#banner-background {
    background: linear-gradient(145deg, #191928 0%, #16101a 50%, #231117 100%);
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

#banner-background canvas {
    width: 100vw;
    height: 100vh;
}

#banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

#banner-text {
    z-index: 10;
}

#banner-text * {
    margin: 0;
}

#banner-text h1 {
    font-size: 6em;
    font-weight: 900;
    letter-spacing: 0.025em;
    line-height: 1;

    @media screen and (max-width: 1080px) {
        font-size: 5em;
    }

    @media screen and (max-width: 768px) {
        font-size: 4.5em;
    }

    @media screen and (max-width: 640px) {
        font-size: 3.25em;
    }
}

#banner-text h3 {
    font-size: 2em;
    margin-top: 10px;
    font-weight: 300;
    line-height: 1.25;
    text-align: right;

    @media screen and (max-width: 768px) {
        font-size: 1.4em;
    }

    @media screen and (max-width: 640px) {
        font-size: 1.2em;
    }
}