@font-face {
    font-family: 'Spumoni';
    src: url('spumoni.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Spumoni', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('images/background.webp'); /* Adiciona a imagem de fundo */
    background-size: 100% auto; /* Garante que a imagem cubra a largura e se ajuste à altura */
    background-repeat: repeat-y; /* Repete a imagem verticalmente */
    text-align: center;
}

#lockscreen {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 8px;
}

#lockscreen img {
    width: 100px;
    margin-bottom: 20px;
}

#lockscreen input {
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: #333;
    color: white;
}

#lockscreen button {
    padding: 10px 20px;
    background-color: #689f38bb;
    border-radius: 8px;
    color: rgb(233, 233, 233);
    border: none;
    cursor: pointer;
}

#content {
    display: none;
}

p, h1 {
    display: inline-block;
    font-size: 3rem;
    text-shadow: black 3px 3px 3px;
    color: rgb(234, 234, 238);
    border-radius: 8px;
    margin: 1rem auto;
}

p {
    font-size: 2rem;
}

button {
    padding: 10px 20px;
    margin: 8px;
    background-color: #689f38bb;
    border-radius: 8px;
    color: rgb(233, 233, 233);
    border: none;
    cursor: pointer;
}

main {
    padding: 20px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    width: 80vw;
    max-width: 600px;
    margin: 0 auto;
}

.gallery img {
    width: 80vw;
    max-width: 600px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
