.galeria {
    display: grid;
    grid-template-columns: 70%;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #F8F8F9;
}

.galeria .title {
    font-family: 'n-extrabold';
    font-size: 1.5rem;
    color: var(--cor-azul);
}

.galeria .row {
    margin-top: 20px;
    margin-bottom: 20px;
}

.galeria ul {
    list-style: none;
    display: flex;
    justify-content: center;
    column-gap: 10px;
}

.galeria ul .title {
    font-family: 'n-extrabold';
    color: var(--cor-preta);
}

.galeria .img_player {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

    .galeria ul li {
        font-family: 1rem;
    }


@media only screen and (max-width: 813px) {

    .galeria {
        display: grid;
        grid-template-columns: 80%;
        justify-content: center;
        padding-top: 30px;
        padding-bottom: 30px;
        background-color: #F8F8F9;

    }

    .galeria ul {
        list-style: none;
        display: flex;
        justify-content: center;
        column-gap: 10px;
        row-gap: 20px;
        flex-direction: column;
    }

    .galeria ul li {
        font-family: 1rem;
    }

}