.game-overview{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding: 1rem;
    .background{
        display: flex;
        justify-content: center;
        align-items: flex-end;
        position: absolute;
        
        z-index: 0;
        width: 100%;
        height: 100%;
        img{
            min-height: 100%;
            min-width: 100%;
            object-fit: cover;
            user-select: none;
            pointer-events: none;
        }
    }
    .title{
        font-size: 4vw;
        margin-top: 2vw;
        margin-bottom: 2vw;
        z-index: 1;
        font-family: var(--title-font);
        color: var(--title-font-color);
        text-align: center;
        /* Outline effect */
        -webkit-text-stroke: 0.2vw var(--title-border-color); /* Outline thickness and color */
        text-stroke: 0.2vw var(--title-border-color); /* For compatibility */
 
        /* Shadow effect */
        text-shadow: 0px 0.33vw 0px var(--title-border-color);   /* Creates the main shadow */
        user-select: none;
        pointer-events: none;
    }
    .video{
        position: relative;
        margin-bottom: 4rem;
        width: 75%;
        max-width: 70rem;
        video{
            width: 100%;
        }
        iframe{
            width: 100% !important;
            height: unset !important;
            aspect-ratio: 3 / 2 !important;
        }
    }
}

@media screen and (min-width: 1500px ){

    .game-overview{
        
        .title{
            font-size: 3.8rem;
            margin-top: 1.4rem;
            margin-bottom: 1.4rem;
            z-index: 1;
            font-family: var(--title-font);
            color: var(--title-font-color);
            text-align: center;
            /* Outline effect */
            -webkit-text-stroke: 3px var(--title-border-color); /* Outline thickness and color */
            text-stroke: 3px var(--title-border-color); /* For compatibility */
     
            /* Shadow effect */
            text-shadow: 0px 5px 0px var(--title-border-color);   /* Creates the main shadow */
        }

    }
}

@media screen and (max-width: 770px ){
    .game-overview{
        
        .title{
            font-size: 8vw;
            margin-top: 3vw;
            margin-bottom: 3vw;

            /* Outline effect */
            -webkit-text-stroke: 0.3vw var(--title-border-color); /* Outline thickness and color */
            text-stroke: 0.3vw var(--title-border-color); /* For compatibility */
     
            /* Shadow effect */
            text-shadow: 0px 0.44vw 0px var(--title-border-color);   /* Creates the main shadow */
        }

    }

}