-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (72 loc) · 1.33 KB
/
style.css
File metadata and controls
86 lines (72 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
body {
margin: 0;
font-family: 'Georgia', serif;
background-color: #f8f6f3;
color: #2c2c2c;
line-height: 1.8;
}
header {
background-color: #1d2b2a;
color: #fefefe;
padding: 80px 20px;
text-align: center;
}
header h1 {
font-size: 3.5em;
margin-bottom: 10px;
}
header p {
font-size: 1.5em;
font-style: italic;
}
.section {
max-width: 1000px;
margin: auto;
padding: 60px 20px;
}
.section h2 {
font-size: 2.5em;
margin-bottom: 20px;
color: #3a3a3a;
}
.section p {
font-size: 1.25em;
margin-bottom: 20px;
}
.highlight {
font-weight: bold;
color: #7a4e2d;
}
.image {
width: 100%;
max-width: 900px;
height: auto;
margin: 30px auto;
display: block;
border-radius: 12px;
}
.campo {
background-color: #fdfaf6;
}
.cidade {
background-color: #f1f6f9;
}
.conexao {
background-color: #fff2e6;
}
footer {
background-color: #1d2b2a;
color: white;
text-align: center;
padding: 40px 20px;
font-size: 1em;
}
@media (min-width: 768px) {
.dual-column {
display: flex;
gap: 40px;
}
.dual-column > div {
flex: 1;
}
}