@import url(main.css);

.texto-blog {
    font-size: 30px !important;
    justify-content: left;
}

.h3-blog a {
    color: aqua !important;
}

.roletaimg {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 28px;
    justify-content: center; /* Melhor centralização em telas menores */
}

.imgroleta {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Responsivo para telas menores */
@media only screen and (max-width: 600px) {
    .roletaimg {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .imgroleta {
        max-width: 80vw; /* Tamanho relativo à tela */
    }
}
