.contentHead{
    width: 90%;
    margin: auto;
}
.gamesHead{
    color: white;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 2.5rem;
    padding: .5em 1em;
    margin: 2rem auto 2rem auto;
    width: fit-content;
    border-radius: 1rem;
    border: .25rem solid white;
}
.gamesContainer{
    width: 90%;
    margin: 0 auto;
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 1rem;

}

.gameContainer{
    
    width: 100%;
    height: auto;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    max-height: 1300px;
    max-width: 800px;
    border-radius: 1rem;
    border: .25rem solid white;

}
.gameCase{
    width: 90%;
    max-width: 720px;
    max-height: 1280px;
    height: auto;
    margin: auto;
}
.gameImage{
    width: 100%;
    max-width: 720px;
    max-height: 1280px;
}
.gameCaseTitle{
    font-family: sans-serif;

 font-size: 2rem;
    
 text-align: center;
 font-weight: bold;
}
.gameCaseLink{
    text-decoration: none;
    color: white;
}
@media (min-width: 1024px) and (orientation: landscape){
    .pageContent{
        width: 60%;
    }
}