-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
112 lines (97 loc) · 1.57 KB
/
style.css
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0px;
background: #f7f7f7;
display: grid;
gap: 60px;
justify-items: center;
margin-top: 60px;
}
img {
max-width: 100%;
display: block;
}
a {
text-decoration: none;
}
h1,
h2,
h3,
p {
margin: 0px;
}
p {
font-size: 20px;
line-height: 1.3;
}
.menu {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.menu a {
background: #fff;
padding: 15px 30px;
border-radius: 4px;
color: #000;
text-transform: uppercase;
}
.conteudo {
display: grid;
grid-template-columns: 1fr 1fr;
max-width: 1000px;
}
.introducao {
background: #fff;
padding: 40px;
text-align: right;
justify-items: end;
align-content: center;
gap: 20px;
position: relative;
display: grid;
}
.detalhe {
width: 60px;
height: 4px;
background: #e21;
position: absolute;
top: 30px;
right: -30px;
}
.botao {
background: #e21;
color: #fff;
padding: 15px 30px;
border-radius: 4px;
text-transform: uppercase;
}
.subtitulo {
font-size: 64px;
text-transform: uppercase;
color: rgba(0, 0, 0, 0.2);
text-align: right;
padding: 40px;
align-self: center;
}
.vantagens {
background: #fff;
padding: 40px;
}
.vantagens-item {
display: grid;
grid-template-columns: auto 1fr;
gap: 10px 20px;
padding: 20px;
}
.vantagens-item p {
grid-column: 2;
}
.rodape {
background: #fff;
width: 100%;
box-sizing: border-box;
text-align: center;
padding: 40px;
}