body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Futura', sans-serif;
    background: linear-gradient(45deg, #000000, #008080, #FFA500, #FF1493);
    background-size: 600% 600%;
    animation: GradientAnimation 15s ease infinite;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    overflow-x: hidden;
}

@keyframes GradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.initial-view {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.scroll-indicator {
    font-size: 1.5rem;
    margin-top: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.container {
    text-align: center;
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.container.visible {
    opacity: 1;
    transform: translateY(0);
}

.spacer-large {
    height: 50px;
}

h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.byline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.github-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.github-icon {
    width: 20px;
    height: 20px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    color: #0f2027;
    text-decoration: none;
    background: white;
    border: 2px solid white;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.button img.icon, .button .icon {
    width: 24px;
    height: 24px;
}

.button:hover {
    background: #0f2027;
    color: white;
}

.content {
    text-align: left;
    color: white;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

object {
    display: block;
    margin: 0 auto 2rem;
    border: 2px solid white;
    border-radius: 5px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
