-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
104 lines (86 loc) · 1.54 KB
/
main.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-image: url("Images/fundo.png");
/* Outras propriedades de estilo (opcional) */
background-repeat: no-repeat; /* Evita repetição da imagem */
background-size: cover; /* Ajusta a imagem para cobrir toda a div */
/* ... outras propriedades ... */
font-family: "Amatic SC", sans-serif;
font-weight: 400;
font-style: normal;
}
header {
font-family: "Amatic SC", sans-serif;
font-weight: 700;
font-style: normal;
}
body > header {
padding: 16px 0;
}
header .container {
display: flex;
align-items: center;
justify-content: space-between;
}
.container h1, p, section {
color: #ecf0f1;
}
.container {
max-width: 1280px;
width: 100%;
margin: 0 auto;
}
.container p {
max-width: 60%;
}
#introduction {
margin-top: 250px;
}
#introduction h2 {
font-size: 110px;
max-width: 60%;
font-weight: 700;
}
.social-media img {
height: 28px;
}
.social-media li {
display: inline;
margin-right: 16px;
}
.social-media li a {
text-decoration: none;
}
#introduction .container {
display: block;
}
#introduction p {
font-size: 30px;
margin-top: 50px;
margin-bottom: 50px;
}
form input,
form button {
font-size: 20px;
display: block;
margin-bottom: 30px;
padding: 8px;
}
form input {
height: 50px;
width: 450px;
}
form button {
height: 55px;
width: 150px;
}
footer {
padding: 16px 0;
position: absolute;
width:100%;
bottom:0px;
}