-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (55 loc) · 1 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
* {
margin: 0;
padding: 0;
}
body {
height: 100vh;
background-image: url(assets/images/bgImg.jpeg);
background-size: cover;
background-position: center center;
position: relative;
}
.box {
height: 100vh;
width: 100%;
background-color: black;
opacity: 0.8;
position: absolute;
top: 0;
}
.homepage {
height: 100vh;
width: 60vw;
margin: auto;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 12px;
position: relative;
z-index: 2;
color: rgb(220, 212, 212);
}
.homepage h1,
#element {
text-align: center;
}
#element {
color: rgb(142, 139, 139);
}
.playBtn {
height: 35px;
width: 150px;
border: 0.2px solid white;
border-radius: 5px;
background-color: rgba(23, 23, 23, 0.3);
color: rgb(220, 212, 212);
font-weight: bolder;
}
.playBtn:hover {
height: 38px;
width: 155px;
cursor: pointer;
border: 2px solid white;
font-size: 1.02em;
}