-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (103 loc) · 2.67 KB
/
style.css
File metadata and controls
116 lines (103 loc) · 2.67 KB
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
/*body {*/
/* background-color: #ffffff;*/
/* color: #ffffff;*/
/* font-family: 'Poppins', sans-serif;*/
/* padding: 0;*/
/* margin: 0;*/
/*}*/
/*.container {*/
/* background: linear-gradient(180deg, #21B5FF 0%, #6C10FF 100%);*/
/* display: flex;*/
/* width: 100%;*/
/* height: 832px;*/
/* padding: 0;*/
/* justify-content: center;*/
/* align-items: center;*/
/* flex-shrink: 0;*/
/* margin: 0;*/
/*}*/
html, body {
margin: 0; /* Removes default margin */
padding: 0; /* Removes default padding */
width: 100%;
height: 100%; /* Ensures the body covers the entire viewport */
}
.first-container {
background: linear-gradient(180deg, #21B5FF 0%, #6C10FF 100%);
display: flex;
width: 100%;
height: 600px;
padding-top: 250px;
justify-content: flex-start;
align-items: center;
flex-shrink: 0;
margin: 0; /* This is good, but the body/html reset is usually needed too */
flex-direction: column;
}
.first-p {
margin-top: 0;
margin-bottom: 0;
padding-top: 0;
width: 844px;
height: 120px;
flex-shrink: 0;
color: #FFF;
font-feature-settings: 'liga' off, 'clig' off;
font-family: 'Poppins', sans-serif;
font-size: 64px;
font-style: normal;
font-weight: 700;
line-height: 150%; /* 96px */
letter-spacing: -1.216px;
}
.second-p {
width: 844px;
height: 120px;
flex-shrink: 0;
color: #FFFFFF;
font-feature-settings: 'liga' off, 'clig' off;
font-family: 'Poppins', sans-serif;
font-size: 64px;
font-style: normal;
font-weight: 700;
line-height: 150%; /* 96px */
letter-spacing: -1.216px;
/* 🟢 ADD THIS LINE: Centers the text inside the element */
text-align: center;
}
.arrow-down {
width: 164px;
height: 126px;
flex-shrink: 0;
fill: #C9F3FF;
}
.arrow {
/* Create space between the text (.first-p) and the arrow */
margin-top: 200px; /* Adjust this value to control the spacing */
/* Ensure it doesn't take up full width unless needed */
width: auto;
}
.second-container {
background: #6C10FF;
display: flex;
width: 100%;
height: 700px;
padding-top: 200px;
justify-content: flex-start;
align-items: center;
flex-shrink: 0;
margin: 0; /* This is good, but the body/html reset is usually needed too */
flex-direction: column;
}
.carousel-wrapper {
/* Adjust this value as needed, e.g., 50 pixels */
padding: 20px;
}
.carousel-item > svg {
height: 600px;
width: 100%;
}
.carousel-caption {
text-align: center;
}