body {
    font-family: Arial, sans-serif;
    background-color: #e9f8b3;
    color: #333;
    text-align: center;
    padding: 50px;
}



.bancoforte {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
}


.bancomadeira {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
}

h1 {
    color: #e70d0d; 
}

ul {
    list-style: none;
    padding: 0;
}

li {
    background: white;
    margin: 10px auto;
    padding: 15px;
    width: 300px;
    
}

.botao {
    display: inline-block;
    background-color: #09ff00; 
    color: rgb(255, 255, 255);
    padding: 15px 30px;
    text-decoration: none;
    font-size: 20px;

}
.botao:hover {
    background-color: #05a800;
    transform: scale(1.1); 
    cursor: pointer; 
}