-
Notifications
You must be signed in to change notification settings - Fork 0
/
Home Page.css
73 lines (65 loc) · 1.22 KB
/
Home Page.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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
height: 100%;
width: 100%;
background-image: url("Images/Hell.jpg");
background-size: cover;
}
h1 {
height: auto;
width: auto;
background-color: rgba(0, 0, 0, 0.700);
color: red;
font-size: 3rem;
text-align: center;
margin-top: 2rem;
}
.box {
height: fit-content;
width: 100%;
display: flex;
align-items: start;
justify-content: space-between;
gap: 1rem;
padding: 1rem;
}
.box-1 {
height: fit-content;
width: fit-content;
text-align: center;
}
p {
background-color: rgba(0, 0, 0, 0.700);
color: red;
padding: 1rem;
font-size: 1rem;
font-weight: bold;
text-align: start;
}
button {
height: auto;
width: auto;
font-size: 1rem;
font-weight: bold;
padding: 0.5rem;
cursor: pointer;
background-color: red;
color: black;
}
.box-2 {
height: fit-content;
width: fit-content;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(0, 0, 0, 0.700);
padding: 1rem;
}
video {
height: auto;
width: 60vw;
}