-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (53 loc) · 921 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Poppins';
}
.container{
width: 100%;
height: 100vh;
background-color: rgba(0,0,0,0.4);
display: flex;
align-items: center;
justify-content: center;
}
.content{
text-align: center;
}
.content h1{
font-size: 95px;
color: #fff;
margin-bottom: 50px;
}
.content a{
font-size: 23px;
color: #fff;
text-decoration: none;
border: 2px solid #fff;
padding: 15px 25px;
border-radius: 50px;
transition: 0.3s;
}
.content a:hover{
background-color: #fff;
color: #000;
}
.background_clip{
position: absolute;
right: 0;
bottom: 0;
z-index: -1;
}
@media (min-aspect-ratio:16/9) {
.background_clip{
width: 100%;
height: auto;
}
}
@media (max-aspect-ratio:16/9) {
.background_clip{
width: auto;
height: 100%;
}
}