-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
45 lines (45 loc) · 949 Bytes
/
styles.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
* {
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
.space-font {
font-family: 'Space Grotesk', sans-serif;
}
.slideshow-container {
position: relative;
overflow: hidden;
height: 400px;
}
.slide {
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.5s ease-in-out;
background-size: cover;
background-position: center;
}
.slide.active {
opacity: 1;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
.float {
animation: float 6s ease-in-out infinite;
}
.chatbot {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 1000;
}
.faq-card {
background-color: #f9f9f9;
padding: 1rem;
border-radius: 0.5rem;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
}