#billboard::before {
    content: ' ';
    display: block;
    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('images/ranks02.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -10;  /* This is pretty important. */
}   

#billboard {
    height: 100vh;
    width: 100%;
}

#billboard h1 {
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 19;
}

.spacer {
    width: 60%;
    font-size: 1.5vw;
    text-align: center;
    padding: 10vh 20%;
}

.spacer h2 {
    font-size: 3.5vw;
}

.spacer p {
    font-size: 2.5vw;
}

.rank {
    width: 100%;
    height: 30vh;
    margin-bottom: 10vh;
    display: inline-flex;
    /* background-color: var(--iceberg); */
}

.rankTitle {
    width: 100%;
    text-align: center;
    margin-bottom: 2vh;
    text-decoration: underline;
}
.quarters {
    position: relative;
    width: calc(85%/3);
    height: 100%;
    text-align: center;
    border: 2px solid var(--jonquil)
}

.quarters:first-child {
    width: 15%;
}

.quarters>* {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.rankInfo>* {
    width: 80%;
    padding: 0 10%;
}

.insignia {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
}

.lt {
    height: 50%;
    width: auto;
}

@media screen and (max-width: 786px) {
    .spacer p {
        font-size: 3.5vw;
    }
    .rankInfo {
        font-size: 2.25vw;
    }
}

@media screen and (min-width: 787px) {
    .quarters:first-child {
        font-size: 200%;
    }
}