.originais{
    margin: auto;
    padding: 0px 5%;
}

.originais .title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 30px;
    padding-bottom: 16px;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.05);
}

.originais .title svg{
    width: 50px;
    fill: var(--main-color);
}

.originais .title h1{
    font-size: 23px;
    font-weight: bold;
    line-height: 23px;
}

.section-games {
    background-color: transparent;
    padding: 30px;
    margin-top: 20px;
    border-radius: 15px;
}



.page {
    min-height: 100vh;
}

.section-games .games a {
    width: 100%;
    margin: 1%;
    border-radius: 10px;
}

.section-games .games img {
    width: 100%;
    border-radius: 10px;
    /* height: 100%; */
}

.section-games .games a:last-child {
    margin-right: 0px;
}

@media screen and (min-width:320px) and (max-width:480px) {
    .originais {
        padding: 10px 24px;
    }

    .section-games {
        padding: 0px;
        margin: 0px;
    }
}

@media (max-width: 700px) {
    .originais .title img{
        width: 300px;
    }
    
    .originais .title p {
        width: 100%;
    }

    .section-games .games a{
        width: 100%;
    }

    .section-games .games img{
        width: 100%;
    }

    .section-games .games {
        flex-wrap: wrap;
    }



    .section-games h1 {
        font-size: 23px;
        text-align: center;
    }
}