.modal {
    display: none;
    justify-content: center;
    min-height: 100vh;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999 !important;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.modal.fade-in {
    opacity: 1;
}

.modal-content {
    background-color: #ffffff;
    margin: auto;
    padding: 10px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);

}

.modal-content p {
    font-size: 16px;
}

.modal-content h1 {
    font-size: 20px;
}

.modal-close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.modal-close:hover,
.modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}