* {
    box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Jersey+15&display=swap');
body {
    background-image: url("https://as1.ftcdn.net/jpg/02/97/43/18/1000_F_297431854_2iQ2BktKUKX63nS4XmlulbagArEowXXp.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 50%;
    background-attachment: fixed;
    font-family: "Jersey 15", sans-serif;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #f6fff5;
    text-shadow: 0 0 6px #ff0000;
    width: 100%;
}



#main {
    border: groove;
    border-width: 10px;
    border-color:#8a00ff ;
    margin: 30px;
    justify-content: center;
    background-color: rgba(183, 13, 104, 0.35);
    padding: 20px;
}

h1 {
    font-size: 5vw;
}

p {
    font-size: 20px;
}

#link {
    font-size: 15px;
    padding: 5px;
    margin: 5px;
    margin-top: 20px;
    cursor: default;
}

.faimage {
    width: 80vw;
    margin: 10px;
}

.verticalgroup {
    display: flex;
    justify-content: center; /* centraliza o grupo na tela */
    gap: 10px;               /* espaço entre as imagens */
}

.verticalgroup img {
    height: 50vw;
    width: auto;
}

.frutigergallery{
    display: flex;              /* usa flexbox */
    flex-direction: column;     /* empilha as imagens verticalmente */
    align-items: center;        /* centraliza horizontalmente */
    justify-content: center;
}

@media only screen and (max-width: 800px) {
    body {
        background-size: 270vw;
        background-position:top;
        background-attachment: fixed;
    }
    
    .faimage {
    width: 70vw;
    margin: 10px;
    }
    
    .verticalgroup {
        flex-direction: column;    /* empilha verticalmente em telas menores */
        align-items: center;       /* centraliza as imagens */
    }
    .verticalgroup img {
        height: auto;              /* altura automática no celular */
        width: 80vw;               /* ajusta a largura à tela */
    }
    
    h1 {
        font-size: 10vw;
    }
}

/*Botao*/

.backbutton {
    border: groove;
    padding: 5px;
    border-color: #ff57e5;
    color: #ff57e5;
    background-color: rgba(209, 14, 88, 0.61);
}