#billboard::before {
    content: ' ';
    display: block;
    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('images/rec2.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: 80%;
    margin: auto 10%;
    z-index: 19;
}

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

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

#info {
    width: 70%;
    padding: 5vh 15%;
}

#list{
    width: 70%;
    padding: 5vh 15%;
    font-size: 1.5vw;
    text-align: left;
}

#list ul {
    column-count: 2;
    column-gap: 10%;
}

 #list h2 {
    text-align: center;
    padding-bottom: 5vh;
 }

.blockHolder {
    display: inline-flex;
    width: 90%;
    height: 40vw;
    padding: 5vh 5%;
}

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

.squarePic {
    height: 40vw;
    width: 40vw;
    object-fit: cover;
}

#steamImg {
    object-position: 0;
}

#discordImg {
    object-position: 50%;
}

.squareText {
    font-size: 1.5vw;
    height: fit-content;
    position: relative;
    left: 10%;
    width: 40%;
}

.flip {
    display: flex;
    flex-direction: row-reverse;
}

.flip .squareText {
    left: -10%;
}

@media screen and (max-width: 768px) {
    .squarePic {
        height: 90vw;
        width: 90vw;
    }
    .blockHolder {
        display: inline-block;
        padding: 0 5% 20%;
        height: 100%;
    }
    .blockHolder>* {
        transform: none;
    }
    .squareText {
        left: 0;
        text-align: center;
        width: 100%;
        font-size: 3vw;
    }

    .flip .squareText {
        left: 0;
    }
    .squareText h2 {
        margin: 5vh auto;
        width: 80%;
    }
    .spacer{
        font-size: 3vw;
    }
    .spacer p {
        font-size: 4vw;
    }
    #list {
        font-size: 3.5vw;
    }
}