-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyle.css
98 lines (85 loc) · 1.69 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
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sarala&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
}
body{
font-size: 100%;
background: linear-gradient(68.15deg, #2F2325 16.62%, #8E5D52 85.61%);
}
header{
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
padding: 14px;
border-bottom: 0.4px solid #FFF2E7;
}
.navbar{
display: flex;
font-family: Sarala;
color: #FFF2E7;
font-size: 18px;
}
.navbar-item{
padding: 0px 24px;
}
.primeira-section{
display: flex;
align-items: center;
justify-content: space-evenly;
}
.titulo-principal{
font-family: Righteous;
color: #FFF2E7;
font-size: 64px;
font-weight: 400;
}
.img2{
padding-bottom: 5px;
}
.subtitulo{
font-family: Sarala;
color: #ECD6C4;
font-size: 24px;
padding: 40px 0px;
}
.botao{
font-family: Sarala;
font-size: 24px;
color: #2F2325;
border-radius: 20px;
background-color: #ECD6C4;
box-shadow: 4px 5px 4px rgba(0, 0, 0, 0.25);
width: 185px;
height: 67px;
border: none;
}
.segunda-section{
display: flex;
align-items: center;
flex-direction: column;
padding: 25px;
}
.titulo-principal2{
font-family: Righteous;
margin: 24px;
font-size: 24px;
color: #FFF2E7;
padding-top: 50px;
border-top: 0.4px solid #FFF2E7;
}
.subtitulo2{
font-family: Sarala;
color: #ECD6C4;
margin: 10px;
}
.footer{
border-top: 0.4px solid #FFF2E7;;
display: flex;
justify-content: center;
padding: 15px;
}