-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
56 lines (47 loc) · 989 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
:root {
--font-family: 'Montserrat', sans-serif;
--bg-color: #05BFDB;
--primary-color: #B71375;
}
body {
background-color: var(--bg-color);
color: var(--primary-color);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
margin: 0;
font-family: var(--font-family);
}
h1 {
font-size: 5em;
font-style: bold;
}
h2 {
font-size: 4em;
}
h3 {
font-size: 2em;
margin-top: 20px;
}
.mensagem {
font-size: 1.5em;
margin-top: 40px;
}
.box {
border: 2px solid var(--primary-color);
display: inline-block;
font-size: 4em;
margin: 20px;
padding: 10px;
}
.btn-jogar {
padding: 15px;
border: 0;
background: var(--primary-color);
border-radius: 5px;
margin-top: 20px;
}