@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    background-color: #000;
}

#content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    opacity: 0;
    animation: fade-in 3s ease forwards;
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}

#video {
    height: 400px;
}

.random-color {
    color: white;
    transition: color 0.3s ease;
}

.rounded-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #333;
    color: #fff;
    font-weight: normal;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.rounded-button:hover {
    background-color: #111;
}

.center-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

h1, a {
    text-decoration: none;
    color: #eee;
}

.flash-text.lightning {
    animation: flash-animation 0.5s ease-in-out;
}

@keyframes flash-animation {
    0%, 100% {
        color: transparent;
    }
    50% {
        color: white;
    }
}
