-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (69 loc) · 1.37 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
65
66
67
68
69
70
71
72
73
74
75
76
77
body{
margin: 0%;
padding: 0%;
}
.logo{
position: absolute;
top:-50px;
}
.drivioo{
position: absolute;
font-size: 1000%;
color: rgb(255, 255, 255);
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-weight: bold;
text-align: center;
margin-top: 20%;
left:650px;
}
#video{ /* We use # because is an id and not a class */
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover; /* This makes an image or video fill its container completely */
z-index: -1; /* Puts the video at the bacк */
}
.btn{
text-align:center;
width:100%;
height: 100vh;
background-color: rgba(0, 0, 0, 0.5);
position: fixed;
}
.btn h1{
font-size: 175px;
color: #fff;
margin-bottom:50PX;
text-align: center;
margin-top: 35vh;
}
.btn a{
font-size: 27px;
color: #fff;
text-decoration: none;
border: 2px solid #fff;
padding: 15px 25px;
border-radius:50px;
transition: 0.3s;
}
.btn a{
font-size: 27px;
color: #fff;
text-decoration: none;
border: 2px solid #fff;
padding: 15px 25px;
border-radius:50px;
transition: 0.3s;
}
.btn a:hover{
background-color: #ffffff;
color:black;
}
.btn h2{
color: #fff;
font-family:serif;
margin-top: -3.5%;
padding-bottom: 1%;
}