-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
117 lines (99 loc) · 2.05 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/* Importing Ubuntu font family from google fonts */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@500&display=swap');
body {
background-color: #0f0f0f;
font-family: 'Ubuntu', sans-serif;
}
.HeadingText {
font-weight: bold;
color: #fff;
border-bottom: 1px solid #fff;
width: 80vw;
display: flex;
margin: auto;
margin-top: 2rem;
margin-bottom: 3rem;
font-size: 2.2rem;
}
.Backgroundimagebox {
width: 30vw;
height: max-content;
display: flex;
margin: auto;
border-radius: 10px;
flex-direction: column;
/* Change Image path for Ambient effect */
background-image: url('Image.png');
border-radius: 8px;
background-size: 8rem 8rem;
}
.TextBox img {
width: 25vw;
display: flex;
margin: auto;
border-radius: 8px;
}
.TextBox {
width: 30vw;
height: max-content;
/* Adjust blur for Text clarity */
backdrop-filter: blur(1000px);
display: block;
padding: 32px 22px;
border-radius: 8px;
}
.TextBox h1, h3 {
color: #fff;
font-weight: bold;
}
.Firstvideo {
width: 80vw;
display: flex;
margin: auto;
}
.SecondVideo {
display: block;
width: 70vw;
border-radius: 15px;
}
.GlassEffectbox {
margin-top: 2rem;
width: 80vw;
display: flex;
margin: auto;
padding: 38px;
justify-content: center;
align-items: center;
position: relative;
bottom: 45vw;
/* Adjust blur for Video clarity */
backdrop-filter: blur(450px);
border-radius: 15px;
}
/* Media Queries for Making Responsive Design */
@media screen and (max-width: 1030px) {
.HeadingText {
font-size: 1.2rem;
width: 90vw;
}
.Backgroundimagebox {
width: 90vw;
}
.TextBox img {
width: 75vw;
margin-top: 20px;
}
.TextBox {
width: 90vw;
padding: 0px;
padding-bottom: 22px;
}
.TextBox h1, h3 {
margin-left: 20px;
margin-right: 20px;
}
.GlassEffectbox {
padding: 20px;
bottom: 47vw;
}
}