main{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.textosEquipe{
    color: white;
    text-shadow: 1px 1px 2px black;
    text-align: center;
    line-height: 1.4;
    margin-top: 12px;
}

.imagensWrapper{
    background-color: #0077fe;
    border: 2px solid rgb(0, 255, 0);
    margin-top: 12px;
    width: 90%;
    max-width: 950px;
    max-height: 500px;
    height: 400px;
    border-radius: 24px;
    padding: 4px;
}
.imagens{
    display: flex;
    overflow-y: scroll;
    padding: 8px;
    gap: 10px;
    max-height: 450px;  
}
.imagens img{
    width: 200px;
    height: 330px;
    border-radius: 24px;
    border: 1px solid rgb(0, 255, 0);
    box-shadow: 1px 1px 10px black;
}
.imagens figure figcaption{
    font-size: 20px;
    color: white;
    margin-top: 10px;

}

@media (min-width: 1080px){
    .imagensWrapper{
        height: 650px;
    }
    .imagens{
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 60px;
    }
    .imagens img{
        width: 280px;
        height: 350px;

    }
}
