-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
54 lines (47 loc) · 737 Bytes
/
styles.css
File metadata and controls
54 lines (47 loc) · 737 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
@font-face {
font-family: "montserrat";
src: url("./Assets/Montserrat-Thin.ttf");
}
main {
height: 100vh;
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
background: rgba(54, 54, 54, 0.897);
position: relative;
z-index: 10;
}
.content {
text-align: center;
}
.content img {
width: 200px;
}
#type h1 {
color: white;
text-align: center;
line-height: 100px;
font-family: "montserrat";
font-size: 5rem;
}
video {
height: 100vh;
width: 100vw;
position: absolute;
position: -1;
object-fit: cover;
}
@media (max-width: 772px) {
.content img {
width: 100px;
}
#type h1 {
font-size: 4rem;
}
}