
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('./image/fundo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.container {
    text-align: center;
}

.logo {
    width: 300px;
}

.botoes {
    margin-top: 20px;
}

.botao {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 30px;
    margin: 10px 0;
    transition: background-color 0.3s ease;
}

.botao img {
    width: 30px;
    margin-right: 10px;
}

.botao:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media only screen and (max-width: 600px) {
    .botao {
        margin: 20px;
    }
}
