#banner
{
    width: 100%;
    height: 100vh;
}

#banner canvas
{
    width: 100%;
    height: 100%;
    background-color: black;
}

#banner-text
{
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: clamp(25px, 4vw, 60px);

    top: max(35%, 100px);
    left: 50%;
    transform: translateX(-50%);

    width: 80%;
    font-size: clamp(23px, 3.9vw, 40px);
    color: #D3DAD9;
    text-shadow: 0 0 4px rgba(0,0,0,0.7);
    word-break: break-word;
    z-index: 0;
}

#banner-text div
{
    display: flex;
    justify-content: flex-start;
    align-self: flex-start;
    flex-direction: column;
    gap: clamp(25px, 4vw, 60px);
}


#welcome-message
{
    display: none;
    font-size:clamp(7px,  4.5vw, 40px);
}

#welcome-message:after
{
    content: '|';
    animation: blink 1s steps(1) infinite;
}


#scroll-down-button
{
    display: flex;
    align-self: flex-start;
    position: relative;
    justify-content: center;
    width: fit-content;
    border: none;
    color: #D3DAD9;
    text-shadow: 0 0 4px rgba(0,0,0,0.7);
    font-size:clamp(23px,  3vw, 30px);
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    cursor: pointer;
}

#scroll-down-button a
{
    height: 100%;
    width: 100%;
    padding: 5px;
}

#scroll-destination
{
    scroll-margin-top: 80px;
}

@media only screen and (min-width: 1200px)
{
    #banner-text
    {
        flex-direction: row;
    }

    #banner-text div
    {
        width: 80%;
    }

    #welcome-message
    {
        display: block;
    }

    #scroll-down-button
    {
        margin-top: 40px;
    }

}