#modal-zone {
    background-color: rgba(0, 0, 0, 0.25);
    position: fixed;
    top: 0;
    bottom: 0;
    left:0 ;
    right: 0;
    z-index: 1;

    display: flex;
    justify-content: center;
    align-items: center;
}

#modal-zone .modal {
    background-color: #267FB7;
    border-radius: 0.8rem;
    box-shadow: 0.8rem 0 1.6rem rgba(0, 0, 0, 0.25);
    width: 30%;
    padding: 4rem;
    z-index: 2;
    text-align: center;
}

.modal-text{
    color: white;
}

#modal-zone #modal-button, #modal-zone #modal-button1 {
    background-color: #94cbee;
    color: black;
    font-size: 1.5rem;
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 0.4rem;
    border: 0;
    transition: all 100ms;
    margin-top: 2rem;
    z-index: 4;
}

#modal-zone #modal-button:hover, #modal-zone #modal-button1:hover {
    background-color: #e0e3e5;
}

#modal-zone[hidden] {
    display: none;
}

.modal div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    z-index: 3;
    gap:2rem;
}

@media only screen and (max-width: 800px) {
#modal-zone .modal {
    width: 50%;
}
}
