html {
    background-image: url(../imagens/ilustration.jpg);
    background-size: cover;
    background-repeat: no-repeat;

    }

.header { 
    font-weight: 800;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 45px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-weight: 800;
    font-size: 25px;
    margin-left: 6px;
}

.menu {
    display: flex;
    padding: 10px 5px;
    align-items: center;
    gap: 10px;
}

.menu li a {
    padding: 10px 5px;
    transition: 0.3s ease-in-out;
} 

.menu li.botao {
    background-color: rgba(91, 194, 65, 1);
    color: rgba(91, 194, 65, 1);
    border-radius: 10px;
    height: 45px;
    display: flex;
    align-items: center;    
}

.menu li a:hover{
    background-color: rgba(91, 194, 65, 1);
    color: rgba(255, 255, 255, 1);
}




