
/* 
   MAIN GAME INFO DIV
*/
.game-info {
    width: 100vw;
    height: auto;
    background-color: var(--background-color);
    background: repeating-linear-gradient(90deg, #151515, #151515 8px, #1c1c1c 8px, #1c1c1c 10px);
    padding-top: 2em;
    padding-left: 2em;
    padding-bottom: 5em;
}


/* 
   GAME INFO TITLE CLASSES
*/
.game-info-section-title {
    font-size: 3em;
    font-family: JetBrainsMono;
    color: var(--text-color);
    font-weight: 300;
    margin: 0;
    padding: 0;
    line-height: 0.7;
    letter-spacing: 0.1;
}

.game-info-section-title-below {
    font-size: 4em;
    font-family: JetBrainsMono;
    color: var(--text-color);
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 1;
    letter-spacing: 0.1;
}


/* 
   GAME INFO TITLE CLASSES
*/
.gameplay-boxes {
    display: flex;
    justify-content: center;
    margin-top: 3em;
    height: auto;
    gap: 1em;
}

.gameplay-box {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 20em;
    padding: 0.2em;
    border: var(--opacity-text-color) 2px solid;
}

.gameplay-box-title {
    color: var(--bright-rust);
    font-family: JetBrainsMono-Light;
    font-size: 1.4em;
}