-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (55 loc) · 1.07 KB
/
Copy pathstyle.css
File metadata and controls
63 lines (55 loc) · 1.07 KB
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
* {
margin: 0;
padding: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-somoothing: grayscale;
box-sizing: border-box;
/* borda a borda faz o calculo do tamanho da caixa evitando o scroll na tela */
}
body {
text-align: center;
padding-top: 160px;
background-image: url(./img/background-image.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
height: 100vh;
font-family: 'Inter', sans-serif;
}
h1 {
color: #FFC700;
font-weight: 400;
font-size: 64px;
line-height: 80px;
font-family: 'Emilys Candy', cursive;
}
h3 {
font-size: 16px;
line-height: 19px;
color: white;
}
h3 span {
color: #FFC700;
}
p {
font-size: 20px;
line-height: 24px;
margin-bottom: 72px;
color: white;
opacity: 0.7;
}
a {
padding: 12px 32px;
font-weight: 700;
font-size: 20px;
line-height: 72px;
color: white;
opacity: .6;
}
a:hover,
.btn-play-now {
text-decoration: none;
color: black;
background-color: #FFC700;
opacity: 1;
}