-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (48 loc) · 968 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
57
58
59
60
61
62
63
*{
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
}
body{
background-image: url(Imagens/background.jpg);
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
position: relative;
width: 100%;
height: 100%;
}
.logo{
width: 90px;
margin: 10px;
}
.buttons{
display: flex;
align-items: center;
justify-content: center;
margin-top: 450px;
}
.button{
font-weight: bold;
font-size: 20px;
background-color: rgba(225, 226, 226, 0);
border: none;
height: 60px;
width: 210px;
margin: 20px;
cursor: pointer;
border-radius: 30px;
transition: 0.8s;
letter-spacing: 1px;
color: #fff;
}
button:hover{
transform: scale(1.050);
background-color: rgba(255, 255, 255, 0.986);
color: #000;
}
#forca{
background-color: #000;
}