body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Fade in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.container {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                linear-gradient(to right, rgba(0, 0, 0, 0.2), transparent, rgba(0, 0, 0, 0.2)),
                url('../images/background.jpg') center/cover no-repeat;
    animation: fadeIn 1.5s ease-out;
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
    margin-top: -2rem;
    animation: fadeIn 1.5s ease-out;
}

.description {
    max-width: 550px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s ease-out 0.3s backwards;
}

.description p {
    margin: 0;
    text-align: center;
}

.contact-link {
    margin-top: 2.5rem;
    padding: 0.75rem 0;
    color: white;
    text-decoration: underline;
    transition: all 0.3s ease;
    opacity: 0.9;
    animation: fadeIn 1.5s ease-out 0.6s backwards;
}

.contact-link:hover {
    transform: scale(1.05);
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

svg {
    width: 400px;
    max-width: 90vw;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .description {
        font-size: 1.1rem;
        padding: 0 15px;
        max-width: 500px;
    }

    .logo-container {
        margin-bottom: 2rem;
    }

    .contact-link {
        padding: 0.6rem 1.2rem;
    }

    svg {
        width: 350px;
    }
}

@media (max-width: 480px) {
    .description {
        font-size: 1rem;
        max-width: 400px;
    }

    .logo-container {
        margin-bottom: 1.5rem;
    }

    svg {
        width: 300px;
    }
}