-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
147 lines (126 loc) · 3.15 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Montserrat:wght@400;600&display=swap');
:root {
--cor1: #000000;
--cor2: #fb741b;
--cor3: #00ffff;
}
*{
margin: 0;
padding: 0;
}
body{
background-image: url('https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/2c32a1f9-40eb-4fd4-8d35-22de00ca94f1/dd1ykrg-2e525bbc-fff8-43d4-bc4b-eb7a97e1b8b0.gif?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7InBhdGgiOiJcL2ZcLzJjMzJhMWY5LTQwZWItNGZkNC04ZDM1LTIyZGUwMGNhOTRmMVwvZGQxeWtyZy0yZTUyNWJiYy1mZmY4LTQzZDQtYmM0Yi1lYjdhOTdlMWI4YjAuZ2lmIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmZpbGUuZG93bmxvYWQiXX0.5LigCggplOk_OkSmYn8D72OmP8XrzTyUIbLSsyCgm6I');
background-position: center;
/* background-repeat: no-repeat; */
background-size: cover;
background-attachment: fixed;
/* height: 100vh; */
box-sizing: border-box;
background-color: var(--cor1);
color: var(--cor2);
}
.cabecalho{
padding: 2% 0 0 15%; /*cima, direita, baixo, esqueeda */
}
.cabecalho__menu {
display: flex;
gap: 80px;
}
.cabecalho__menu__link:hover {
font-size: 2.5rem;
color: var(--cor2);
}
.cabecalho__menu__link {
font: bolder 1.5rem arial;
color: var(--cor3);
text-decoration: none;
}
.titulo-destaque{
color: var(--cor3);
}
.apresentacao{
padding: 5% 15%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
}
.apresentacao__conteudo{
width: 615px;
display: flex;
flex-direction: column;
gap: 40px;
}
.apresentacao__conteudo__titulo{
font-size: 2.25rem;
font-family: 'Krona One', sans-serif;
}
.apresentacao__conteudo__texto{
font-size: 1.5rem;
font-family: 'Montserrat', sans-serif;
}
.apresentacao__links{
margin-bottom: 10vh;
display: flex;
justify-content: center;
margin: 0 auto;
align-items: center;
flex-direction: column;
gap: 0.5cm;
}
.apresentacao__links__link:hover {
background-color: #191919;
}
.apresentacao__links__link{
display: flex;
justify-content: center;
gap: 0.4cm;
border: 2px solid var(--cor2);
width: 280px;
text-align: center;
border-radius: 16px;
font-size: 1.5rem;
font-weight: 600;
padding: 21.5px 0;
color: var(--cor2);
font-family: 'Montserrat', sans-serif;
text-decoration: none;
}
.imagembot {
position: relative;
top: -0.1cm;
width: 0.9cm;
height: 0.9cm;
filter: brightness(70%);
}
#imagem {
position: fixed;
top: 0px;
right: 0px;
}
#rodape {
width: auto;
position: relative;
bottom: auto;
text-align: center;
padding: 0.4cm;
background-color: var(--cor3);
color: var(--cor1);
font-family: Arial, Helvetica, sans-serif;
font-weight: bolder;
}
@media (max-width: 1311px) {
.cabecalho {
padding: 10%;
}
.cabecalho__menu {
justify-content: center;
}
.apresentacao {
flex-direction: column-reverse;
padding: 5%;
}
.apresentacao__conteudo {
width: auto;
}
}