File size: 579 Bytes
b283022
 
b2d8964
b283022
 
 
 
 
b2d8964
 
b283022
 
b2d8964
 
b283022
 
 
 
b2d8964
 
b283022
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Shared styles across all pages */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#hero {
    background: radial-gradient(ellipse at center, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 1) 100%);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

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