-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
108 lines (85 loc) · 1.49 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
body {
margin: 0;
padding: 0;
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: black;
}
/* HEADER */
.titulo {
color: #32b9cd;
width: fit-content;
font-weight: 500;
}
.navbar {
width: 300px;
color: #e3b062;
list-style: none;
display: flex;
justify-content: space-between;
align-items: center;
}
.navbar a{
color: #e3b062;
text-decoration: none;
}
.navbar a:hover {
color: #32b9cd
}
.header {
border-bottom: 3px solid #32b9cd;
}
.container {
width: 80%;
margin: auto;
display: flex;
}
.header .container {
justify-content: space-between;
}
/* Banner */
.banner{
background-image: url("./assets/bg-jelly-fish-para_outras_pags.png");
height: 500px;;
color:white
}
.banner .container {
justify-content: center;
align-items: center;
height: 100%;
}
.banner .container p {
font-size : 32px;
width: 200px;
}
/* SOCIAL */
.social {
background-color: #f7f7f7;
height: 500px;
}
.social .container {
align-items: center;
height: 100%;
width: 100%;
justify-content: space-around;
}
.social .container .box {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.social .container .box img {
width: 100px;
}
.social .container .box p {
width: 400px;
}
/* FOOTER */
.footer {
background-color: #32b9cd;
color: white;
}
.footer .container {
justify-content: center;
text-align: center;
}