-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (66 loc) · 1.57 KB
/
Copy pathstyle.css
File metadata and controls
72 lines (66 loc) · 1.57 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
/* Custom styles to ensure Inter font is applied and provide a smooth scroll */
body {
font-family: 'Inter', sans-serif;
scroll-behavior: smooth;
line-height: 1.6; /* Improved readability */
}
/* Styling for the video placeholder/embed */
.video-container {
position: relative;
padding-bottom: 56.25%; /* 16:9 aspect ratio */
height: 0;
overflow: hidden;
border-radius: 0.75rem; /* Rounded corners */
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* Custom Keyframe Animations for Hero Section */
@keyframes fade-in-down {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fade-in-up {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fade-in-down {
animation: fade-in-down 1s ease-out forwards;
}
.animate-fade-in-up {
animation: fade-in-up 1s ease-out forwards;
animation-delay: 0.5s; /* Delay for sequential animation */
}
/* Enhancing hero button with a subtle pseudo-element for extra flair */
.hero-button::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
border-radius: 9999px; /* Full rounded */
opacity: 0;
transition: opacity 0.3s ease-in-out;
z-index: -1;
}
.hero-button:hover::before {
opacity: 1;
}