* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

#bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    /* min-width: 100%; */
    max-width: 600px;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.content {
    text-align: center;
    color: #ffffff;
    padding: 2rem;
    animation: fadeIn 1.5s ease-in;
}

.content h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.3rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.email {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1rem;
    color: #f0f0f0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.email a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email a:hover {
    color: #ffffff;
    text-decoration: underline;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2.5rem;
        letter-spacing: 0.2rem;
    }

    .email {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 2rem;
        letter-spacing: 0.15rem;
    }

    .email {
        font-size: 1rem;
    }
}