body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #a2cbff;
    text-align: center;
}

h1 {
    margin-top: 20px;
    color: #04284f;
}

button {
    padding: 10px 18px;
    margin: 6px;
    border: none;
    border-radius: 8px;
    background-color: #04284f;
    color: white;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    background-color: #042343;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 12px;
    width: 320px;
}

.close {
    float: right;
    font-size: 22px;
    cursor: pointer;
    color: red;
}

#botoes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding: 20px;
}

button {
    padding: 20px;
    border-radius: 12px;
    background-color: #011a35;
    color: white;
    font-weight: bold;
    min-height: 80px;
}

button:hover {
    background-color: #0056b3;
}

footer{
    background-color:#011a35 ;
    color: white;
}