-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
123 lines (104 loc) · 2.31 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
* {
margin: 0;
padding: 0;
}
body {
font-family: 'Arial', sans-serif;
background: white;
}
header {
color: black;
background: white;
padding: 40px 0;
}
h1 {
font-size: 30px;
opacity: 0; /* Inicialmente invisível */
transform: translateY(-50px); /* Posição inicial acima */
animation: titleEntrance 1s forwards; /* Animação de entrada */
}
.caixa {
display: flex;
justify-content: space-between; /* Alinha os elementos nas extremidades */
align-items: center; /* Centraliza verticalmente os elementos */
}
.caixa h1 {
padding-left: 300px;
}
nav {
position: absolute;
right: 400px;
}
nav ul {
list-style: none;
padding: 0;
margin: 0;
display: flex; /* Alinha os itens da lista horizontalmente */
}
nav li {
margin-right: 15px; /* Espaçamento entre os itens de navegação */
}
nav a {
color: black;
font-weight: bold;
font-size: 22px;
text-decoration: none;
}
nav a:hover {
color: rgb(138, 59, 125);
text-decoration: underline;
}
.titulo-principal {
background-color: #8BC6EC;
background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
color: white;
padding: 120px;
}
.titulo-principal h1{
text-align: center;
font-size: 50px;
opacity: 0; /* Inicialmente invisível */
transform: translateY(-50px); /* Posição inicial acima */
animation: titleEntrance 1s forwards; /* Animação de entrada */
}
/* Animação de entrada */
@keyframes titleEntrance {
to {
opacity: 1; /* Torna o título visível */
transform: translateY(0); /* Retorna à posição original */
}
}
p {
padding: 20px;
}
.img-inicio {
max-width: 350px;
height: auto;
}
.apresentacao {
font-size: 20px;
padding: 100px;
display: flex;
align-items: center; /* Alinhar verticalmente */
gap: 40px; /* Espaçamento entre texto e imagem */
}
.rodape {
background: rgb(41, 69, 122);
color: white;
text-align: center;
padding: 100px 0;
}
.rodape img {
max-height: 40px; /* Ajuste a altura da imagem */
}
.rodape .redes-sociais {
display: flex;
justify-content: center; /* Centralizar horizontalmente */
margin: 0 20px;
}
.copyright {
color: #FFFFFF;
font-size: 13px;
margin: 20px 0 0;
padding: 10px;
}