-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
57 lines (50 loc) · 888 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
*{
margin:0;
padding:0;
box-sizing: border-box;
color:white;
font-family: "Poppins", sans-serif;
}
nav {
position : absolute;
width: 100%;
display: flex;
padding: 1rem 10rem;
justify-content: space-between;
background: turquoise;
}
.container {
height : 100vh;
}
.container img{
width: 100%;
position: absolute;
height: 110vh;
object-fit: cover;
z-index: -1;
}
.main-title{
position:absolute;
top: 30%;
left: 50%;
font-size: 6rem;
transform: translate(-50%, -30%);
}
.content {
width: 100%;
background: rgb(24, 24, 24);
min-height: 100vh;
z-index: 2;
position: absolute;
}
.content-images{
display: flex;
justify-content: space-around;
align-items: center;
min-height: 60vh;
text-align: center;
}
.text{
padding: 2rem 20rem;
font-size: 1.1rem;
}