@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.container {
    text-align: center;
}

.image-container {
    margin-bottom: 20px;
}

.main-image {
    max-width: 80vw;
    max-height: 80vh;
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
}

.copyright {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    animation: fadeIn 2s ease-in 1s forwards;
}

.labs-link {
    display: block;
    margin-top: 1rem;
    opacity: 0;
    color: white;
    animation: fadeInPartial 2s ease-in 1s forwards;
    transition: opacity 0.3s ease;
}

.labs-link:hover {
    opacity: 1 !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInPartial {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.2;
        transform: translateY(0);
    }
}