File size: 632 Bytes
67c755a 35d793a d51dbe5 35d793a 67c755a 76d3eae 35d793a c368f70 1385e9f 2db1da7 a7925d7 2db1da7 316da9e 0b696ef 2db1da7 0b696ef |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background-color: #000;
color: #10b981;
margin: 0;
padding: 0;
line-height: 1.6;
}
/* Ensure content takes full height */
html, body {
height: 100%;
}
/* Animation for the hero section */
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
.floating {
animation: float 6s ease-in-out infinite;
} |