* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color: aqua;
}

ul,ol,li{
    list-style: none;
}

body{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    background: linear-gradient(rgb(6, 122, 255), beige 60%, beige 60%,rgb(6, 122, 255));
    font-family: sans-serif, 'Montserrat';
     overflow: auto;
    flex-direction: column;
}

header{
    height: 100px;
    font-size: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 80px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: bold;
    text-align: center;
    user-select: none;
}

main{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    width: 100vw;
    height: 100vh;
    padding: 20px;
    gap: 20px;
    backdrop-filter: blur(10px);
}

.galeria {
    display: flex;
    justify-content: space-around; 
    align-items: center;
    gap: 20px;              
    flex-wrap: wrap;         
}

.galeria img{
    height: 300px;
    width: 300px;
    gap: 20px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);   
    transition: transform 0.3s ease;
    cursor: pointer;

}


.galeria img:hover {
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .galeria {
        flex-direction: column;
        align-items: center;
    }

    .galeria img {
        width: 90vw;      /* Imagem ocupa quase toda largura */
        max-width: 350px; /* Limita tamanho máximo */
        height: auto;
        border-radius: 10px;
        margin-bottom: 20px; /* Espaço entre imagens */
    }
}

footer{
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    user-select: none;
}