#modal {
    background: #212121c2;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    height: 100%;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.modal-box {
    display: flex;
    position: relative;
    padding: 10px;
    z-index: 9;
    max-width: 380px;
    padding: 30px;
    gap: 0.5rem;
    background: #f1f1f1;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}

.modal-box p {
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 999;
    text-align: center;
    color: #444242;
}
.modal-box p:first-child {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

p.modal-messagem {
    font-size: 1.2rem;
}

button#close-modal {
    text-align: right;
    position: absolute;
    top: 15px;
    right: 20px;
}