-
Notifications
You must be signed in to change notification settings - Fork 0
/
style .css
86 lines (74 loc) · 1.45 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
78
79
80
81
82
83
84
85
86
@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&display=swap');
* {
margin: 0;
padding: 0;
}
body {
background-color: black;
}
.content {
background-image: url("Assest/Image/bg.jpg");
background-position: center center;
background-size: max(1200px, 100vw);
background-repeat: no-repeat;
width: 100vw;
height: 80vh;
position: relative;
}
.opacitybox {
width: 100vw;
height: 80vh;
opacity: 0.7;
background-color: black;
position: absolute;
top: 0%;
}
nav {
max-width: 99vw;
margin: auto;
display: flex;
justify-content: space-around;
align-items: center;
}
nav img {
width: 110px;
height: 80px;
position: relative;
z-index: 10;
}
nav button {
position: relative;
z-index: 10;
}
.contentbox {
font-family: "Martel Sans", sans-serif;
/* font-weight: 600; */
font-style: normal;
height: calc(100%-180px);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
position: relative;
z-index: 10;
padding: 0 30px;
gap: 23px;
}
.contentbox> :nth-child(1) {
font-weight: 900;
font-size: 48px;
}
.contentbox> :nth-child(2) {
font-weight: 650;
font-size: 20px;
}
.contentbox> :nth-child(3) {
font-weight: 400;
font-size: 16px;
}
.separation{
height: 8px;
width: 100vw;
background-color:grey;
}