* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow: hidden;
}

#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
}


h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: white;
}

 



#clock {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: white;
}

#footer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    font-size: 0.8rem;
    line-height: 1.5;
    color: white;
}


#footer a.email-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s; 
}


#footer a.email-link:hover {
    color: #ffcc00; 
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}


#footer a.email-link {
    animation: bounce 1s infinite; 
}


@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    #clock {
        font-size: 1.2rem;
    }

    #footer {
        font-size: 0.7rem;
    }
}