/* Configuração para o fundo cobrindo a tela */
body {
    margin: 0;
    padding: 0;
    background-image: url("/static/images/background.jpeg");
    background-position: center center; /* Mantém a centralização */
    background-repeat: no-repeat;
    background-size: cover; /* Cobre toda a tela */
    background-attachment: fixed;
    height: 100vh;
    width: 100vw;
    overflow: hidden; /* Evita rolagem caso a imagem exceda a tela */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container para centralizar os botões */
.button-container {
    display: flex;
    gap: 20px;
}

/* Estilos para os botões */
.button {
    padding: 10px 20px;
    background-color: rgba(0, 110, 255, 0.429);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: rgba(20, 173, 255, 0.318);
}

/* Ajuste para dispositivos móveis */
@media (max-width: 768px) {
    body {
        background-position: center center;
        background-size: cover;
    }
}
