-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
121 lines (111 loc) · 2.29 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
113
114
115
116
117
118
119
120
121
@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Sarala&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
}
body{
font-size: 100%;
background: rgb(255, 255, 255);
}
.cabecalho{
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
padding: 10px;
border-bottom: 0.5px solid #47acffc4;
background-color: rgb(253, 253, 253);
}
.cabecalho-img{
height: 57px;
}
.cabecalho-menu{
display: flex;
gap: 40px;
}
.cabecalho-menu-item{
font-family: 'Sarala', sans-serif;
color: #05b5c5;
font-weight: 400;
font-size: 18px;;
}
.conteudo{
margin-bottom: 48px;
}
.conteudo-principal{
padding: 30px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
}
.conteudo-principal-escrito{
display: flex;
flex-direction: column;
gap: 30px;
}
.conteudo-principal-titulo{
font-family: 'Righteous', cursive;
font-weight: 400;
font-size: 64px;
color: #50deeb;
}
.conteudo-principal-subtitulo{
font-family: 'Sarala', sans-serif;
font-weight: 500;
font-size: 24px;
margin-top: -20px;
color: #333333;
}
.conteudo-principal-botao{
background-color: #2abbff;
width: 180px;
height: 60px;
border-radius: 30px;
border: none;
box-shadow: 4px 5px 4px rgba(0,0,0,0.25);
cursor: pointer;
font-family: 'Sarala', sans-serif;
font-weight: 400;
font-size: 24px;
color: #fff2e7;
}
.conteudo-principal-botao:hover{
background-color: rgb(67, 144, 245);
}
.conteudo-principal-imagem{
height: 400px;
}
.conteudo-secundario{
display: flex;
flex-direction: column;
align-items: center;
margin-top: 48px;
gap: 24px;
font-family: 'Sarala', sans-serif;
color: #2abbff;
border-top: 0.5px solid #47acffc4;
}
.conteudo-secundario-titulo{
padding-top: 48px;
font-family: 'Righteous', cursive;
font-weight: 400;
font-size: 24px;
margin-bottom: 16px;
}
.conteudo-secundario-paragrafo{
font-family: 'Sarala', sans-serif;
font-weight: 300;
font-size: 18px;
}
.rodape{
padding: 25px;
border-top: 0.5px solid #47acffc4;
}
.rodape-imagem{
height: 100px;
display: block;
margin: 0 auto;
}