.imagens img{
    width: 90%;
    height: 90%;
}

.centralizar{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.margemImagens img{
    margin: 10px 0px;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    touch-action: manipulation;
}

.container {
    width: 100vw; /* Largura total da tela */
    height: 100vh; /* Altura total da tela */
    background: #f4f4f4; /* Cor de fundo */
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #000000;
    border-top: 5px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}