File size: 965 Bytes
c3bb20b
 
3216ecf
c3bb20b
 
 
 
 
 
 
 
 
 
3216ecf
 
c3bb20b
 
3216ecf
 
c3bb20b
 
 
3216ecf
 
c3bb20b
 
3216ecf
 
c3bb20b
 
 
 
 
 
 
 
3216ecf
c3bb20b
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Space+Mono:wght@400;700&display=swap');

body {
    font-family: 'Space Mono', monospace;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #7e22ce;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9333ea;
}

/* Animation for alien-themed elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* Glow effect for UFO elements */
.glow-effect {
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.5);
    transition: box-shadow 0.3s ease;
}

.glow-effect:hover {
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.8);
}