-
Notifications
You must be signed in to change notification settings - Fork 167
/
style-landing.css
131 lines (112 loc) · 2.14 KB
/
style-landing.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
* {
font-family: 'Inter', sans-serif;
margin: 0;
padding: 0;
}
body {
overflow: hidden; /* Prevent scrolling on the body */
}
/* Background image */
.bg-img-land img {
filter: blur(0.7458557588805167vh);
width: 100vw;
height: 70vh;
}
/* Heading and subtitle */
.heading-subtitle {
text-align: center;
display: block;
transform: translateZ(21.52852529601722vh);
}
.heading {
display: flex;
text-align: center;
justify-content: center;
font-size: 5.382131324004305vh;
font-weight: 900;
margin-top: -45.821313240043054vh;
text-shadow: 0 0 0.0458557588805167vh black;
}
.mind {
color: #72d34f;
}
.space {
color: #edeff4;
}
.find {
transform: translateY(-0.458557588805167vh);
}
/* Quotes */
.wrapper {
display: block;
text-align: center;
align-items: center;
justify-content: center;
color: #2cbdc2;
overflow: hidden;
}
.dynamic-text {
margin-left: -20px;
margin-top: 150px;
height: 90px;
line-height: 0px;
overflow: hidden;
}
.dynamic-text li {
list-style: none;
font-size: 25px;
font-weight: 500;
font-weight: 700;
position: relative;
top: 0;
line-height: 100px;
animation: slideup 450s steps(100);
}
@keyframes slideup {
100% {
top: -10000px;
}
}
.dynamic-text li span {
position: relative;
}
.dynamic-text li span::after {
content: "";
position: absolute;
}
/* Entry Button */
.button {
display: flex;
align-items: center;
justify-content: center;
margin-top: 50px;
}
/* Entry Button */
.button {
display: flex;
align-items: center;
justify-content: center;
margin-top: 50px;
}
button {
background-color: #72d34f;
width: 250px;
height: 55px;
border: none;
border-radius: 12px;
color: white;
font-size: 18px; /* Adjusted font size */
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease; /* Added smooth transition */
}
button:hover {
width: 275px;
height: 60px;
background-color: #4aaf3a; /* Adjusted hover color */
border-radius: 16px;
}
button a {
text-decoration: none;
color: white;
}