@font-face {
    font-family: 'Tetrix';
    font-display: block;
    src: url('/Tetrix.woff') format('woff');
}


.masthead-banner {
    width: 100%;
    height: 16rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: linear-gradient(90deg,
            #000 0%, #600 10%, #a00 40%, #a00 49.9%, #001080 50.1%, #001080 60%, #000 100%);
    position: relative;
    overflow: hidden;
}

.masthead-title {
    font-family: 'Tetrix', Arial, sans-serif;
    font-size: 7.5rem;
    color: #fff;
    text-align: center;
    text-shadow:
        4px 4px 0 #222,
        3px 3px 0 #222,
        2px 2px 0 #222,
        1px 1px 0 #222;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    margin-top: -1rem;
    z-index: 2;
}

.masthead-subtitle {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    margin-top: -4rem;
    margin-bottom: 0.5rem;
    z-index: 2;
}

@media (max-width: 1355px) {
    .masthead-banner {
        height: 90px;
    }

    .masthead-title {
        font-size: 3rem;
        margin-bottom: 0.2rem;
        margin-top: 0.5rem;
    }

    .masthead-subtitle {
        display: none;
    }
}

@media (max-width: 600px) {
    .masthead-title {
        font-size: 2rem;
    }
}