h2{
    font-weight: bolder;
    color: rgba(255, 255, 255, 0.5);
}
.game-page-header{
    position: relative;
    display: flex;
    width: 100%;
    height: 700px;
    background-color: black;
    overflow: visible;
    margin-bottom: 100px;
}
.game-icon-image{
    position: relative;
    height: 100%;
    aspect-ratio: 63/50;
}
.game-icon-image img{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    height: 100%;
}
.game-icon-overlay{
    background-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0) 75%);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.bottom-gradient{
    position: absolute;
    bottom: 0;
    background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,1), rgba(0,0,0,0));
    transform: translate(0, 50%);
    width: 100%;
    height: 200px;
}

.game-info-{
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    width: 100%;
    position: absolute;
    right: 100px;
    top: 75px;
    text-align: end;
    z-index: 2;
}

.game-info- h1{
    font-size: 72px;
}

.game-info- h3{
    margin-top: 25px;
    font-size: 36px;
    color: rgba(255, 255, 255, 0.5);
}

.buttons{
    display: flex;
    margin-top: 100px;
    flex-direction: column;
    gap: 25px 0;
}

.button{
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    border: 2.5px solid rgba(189, 253, 246, 0.75);
    text-align: center;
    height: 50px;
    transition: 0.25s;
    background-color: rgba(0,0,0,0.25);
}

.button:hover{
    height: 75px;
}

.button h1{
    font-size: 32px;
}



.game-information{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.content-box{
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
    padding: 0 50px;
}

.content-box h2{
    max-width: 75ch;
}
.sub-game{
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
    gap: 10px;
}

.sub-game h1{
    font-size: 36px;
    margin-bottom: 0px;
}

.sub-game h3{
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.line{
    width: 292px;
    height: 240px;
}
.game-selection{
    width: 100%;
    height: 200px;
    display: inline-flex;
    overflow-x:auto;
    position: absolute;
    top: 20px;
    left: 0px;
    justify-content: center;
}

.game-title{
    font-weight:100;
}
/* RESPONSIVE RULES */

@media only screen and (min-width: 767px) {
    /* DESKTOP */
}
@media only screen and (max-width: 767px) {
    /* MOBILE */
    
    .game-page-header{
        position: relative;
        display: flex;
        width: 100%;
        height: 500px;
        background-color: transparent;
        overflow: visible;
        margin-bottom: 50px;
    }
    .game-icon-image{
        position: relative;
        height:fit-content;
        width: 110%;
        aspect-ratio: 63/50;
        overflow: hidden;
    }
    .game-icon-image img{
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translate(-50%,0);
        width: 110%;
        height: auto;
    }
    .game-icon-overlay{
        background-image: linear-gradient(to top, rgba(11,11,11,1), rgba(11,11,11,0) 50%);
        position: absolute;
        width: 110%;
        z-index: 1;
        aspect-ratio: 63/50;
    }
    .bottom-gradient{
        display: none;
    }

    .game-info-{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        position: absolute;
        top: auto;
        right: 0;
        bottom: 0px;
        text-align: center;
        z-index: 2;
    }

    .game-info- h1{
        font-size: 56px;
    }
    
    .game-info- h3{
        margin-top: 15px;
        font-size: 24px;
        color: rgba(255, 255, 255, 0.5);
    }
    
    .buttons{
        display: flex;
        margin-top: 15px;
        flex-direction: column;
        gap: 15px 0;
    }
    
    .button{
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 300px;
        border: 2.5px solid rgba(189, 253, 246, 0.75);
        text-align: center;
        height: 50px;
        transition: 0.25s;
        background-color: rgba(0,0,0,0.25);
    }
    
    .button:hover{
        height: 75px;
    }
    
    .button h1{
        font-size: 24px;
    }
}