@font-face {
    font-family: "league";
    src: url("../fonts/LeagueMonoVariable.ttf");
}

@font-face {
    font-family: "jabin";
    src: url("../fonts/Jabin-Typeface.ttf");
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


@keyframes increase-weight {
    0% {
        text-shadow: 2px 2px 2px rgba(0, 255, 0, 0.45);
    }
    50% {
        text-shadow: 3px 3px 3px rgba(0, 255, 0, 0.6);
    }
    100% {
        text-shadow: 2px 2px 2px rgba(0, 255, 0, 0.45);
    }
}

* {
    font-family: "league";
}

body {
    background-color: #000;
}

#intro-container {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #151A2C; 
    z-index: 10;
}

#intro {
    color: #FFF;
    font-size: 3em;
    font-family: "league";
    animation: increase-weight 4s infinite ease-in-out;
    text-align: center;
    font-variation-settings: 'wght' 600;
    text-transform: uppercase;   

}

#intro-description {
    padding-top: 2em;
    color: #FFF;
    font-variation-settings: 'wght' 400;
    width: 400px;
    color: #EEE;
    font-size: 0.8em;
    text-align: center;
    animation: fade-in 2s ease-in;
    z-index: 1;
}

#entry {
    z-index: 1;
}

#entry button {
    background-color: rgb(255, 255, 255, 0);
    font-family: "league";
    font-size: 20px;
    font-variation-settings: 'wght' 400;
    color: #FFF;
    border: 1px solid rgba(0, 255, 0, 0.45);
    border-radius: 5px;
    padding: 10px;
    margin-top: 40px;
    cursor: pointer;
    transition: all 200ms ease-in-out;
    outline: 0;
    animation: fade-in 1s ease-in;
}

#entry button:hover {
    background-color: rgb(255, 255, 255, 0.1);
    border: 1px solid #FFF;
}

#audio-control {
    position: absolute;
    top: 80%;
}