1.paper-container {
2 max-width: 800px;
3 margin: 0 auto;
4 padding: 1.5rem;
5 background-color: white;
6 box-shadow: 0 0 10px rgba(0,0,0,0.1);
7 font-family: 'Roboto', sans-serif;
8}
10.paper-content h1 {
11 font-size: 22px;
12 font-weight: bold;
13 margin-bottom: 0.5rem;
14 text-align: center;
15}
17.paper-content h2 {
18 font-size: 16px;
19 font-weight: bold;
20 margin-top: 1rem;
21 margin-bottom: 0.5rem;
22}
24.paper-content h3 {
25 font-size: 14px;
26 font-weight: bold;
27 margin-top: 1rem;
28 margin-bottom: 0.25rem;
29}
31.paper-content p {
32 font-size: 15px;
33 line-height: 1.3;
34 margin-bottom: 0.5rem;
35 text-align: justify;
36}
38.paper-content em {
39 font-style: italic;
40}
42.paper-content .math-display {
43 margin: 0.5rem 0;
44 overflow-x: auto;
45 text-align: center;
46}
48.paper-content code {
49 font-size: 12px;
50 background-color: #f5f5f5;
51 padding: 1px 3px;
52 border-radius: 2px;
53}