.screenshot{
    display: flex;
    flex-direction: column;
    padding: 40px 0 20px;
}

.screenshot h1{
    display: flex;
    color: #c9511d;
    font-size: 4vw;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.screenshot-gameplay{
    color: #c34a1e;
    background-color: rgb(238, 238, 238);
    margin: 0 40px 40px;
    padding: 20px 10px;
    font-size: 1vw;
}

.screenshot-gameplay h2{
    padding-left: 1%;
}

.screenshot-content{
    display: flex;
    flex-wrap: wrap;
}

.container-screenshot{
    display: flex;
    flex-direction: column;
    width: 22.5%;
    height: 20%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 1%;
    border-style: solid;
    border-width: 1px;
    border-color: #dddddd;
    overflow: hidden;
}

.container-screenshot img{
    width: 100%;
    height: 100%;
}

.container-screenshot img:hover{
    transform: scale(1.3);
    transition: 0.5s;
}

.title-screenshot{
    color: black;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
    padding-left: 1.5%;
    font-weight: bold;
    background-color: white;
}

@media only screen and (max-width: 800px) {
    .screenshot h1{
        font-size: 5vw;
        margin-bottom: 20px;
    }

    .screenshot-gameplay{
        display: block;
        font-size: 2vw;
        overflow-x: scroll;
        margin: 0 20px;
        margin-bottom: 40px;
    }

    .screenshot-content {
        display: block;
        white-space: nowrap;
        padding-top: 8%;
    }
    
    .container-screenshot{
        display: inline-block;
        width: 45vw;
    }

    .screenshot-gameplay h2{
        position: absolute;
    }
}