body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url('caminho-da-imagem-de-fundo.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo {
    margin-top: 10px;
}

h1 {
    font-size: 24px;
    color: #333;
}

.redirect-button {
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
}

.redirect-button:hover {
    background-color: #0056b3;
}
