File size: 1,321 Bytes
9ffbd43
 
 
 
 
 
 
fcc595b
 
9ffbd43
 
 
fcc595b
 
9ffbd43
 
fcc595b
 
9ffbd43
 
 
 
 
 
 
 
 
 
 
fcc595b
 
9ffbd43
 
 
 
fcc595b
9ffbd43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #7c3aed, #ec4899);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #6d28d9, #db2777);
}

/* Custom animations */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Selection styles */
::selection {
    background: rgba(167, 139, 250, 0.5);
    color: white;
}

/* Custom styles for the page */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
}

/* Mobile menu transition */
#mobile-menu {
    transition: all 0.3s ease;
    transform-origin: top;
}

/* Custom focus styles */
input:focus, textarea:focus, select:focus, button:focus {
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.5);
}

/* Custom placeholder color */
::placeholder {
    color: rgba(216, 180, 254, 0.5) !important;
}

/* Responsive tweaks */
@media (max-width: 767px) {
    .hero-image {
        margin-top: 2rem;
    }
}