body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
}


#seasonal-container {
    /* Habilita o comportamento de múltiplas colunas */
    column-count: 15;
    /* Número de colunas desejado, ajuste conforme necessário */

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

#seasonal-container img {
    /* Faz com que a imagem não seja "quebrada" entre as colunas */
    break-inside: avoid;
    /* Espaçamento abaixo de cada imagem */

    animation: floaty 6s ease-in-out infinite alternate;
}

body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#me {
    max-width: 80vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

@keyframes floaty {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(10px);
    }
}