section.modal{
    width: 100%;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.808);
    position: fixed;
    left: 0;
    top:0;
    overflow: hidden;
    transition: 0.3s;
}

.open-modal{
    height: 100vh !important;
    transition: 0.3s !important;

}

section.modal .modal-item{
    width: 80%;
    margin: 0 auto;
    background-color: var(--primary-darkBlue);
    padding: 30px;
    border-radius: 5px;
}

section.modal .top-modal{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 20px 0;
}

section.modal textarea{
    margin: 20px 0;
    resize: none;
}

section.modal .top-modal h1{
    font-size: 25px;
}

section.modal .top-modal h1:nth-child(2){
    cursor: pointer;
}

@media screen and (max-width: 1000px){
    section.modal .modal-item{
        width: 97%;
    }
}   

@media screen and (max-width: 500px){
    section.modal .top-modal h1{
        font-size: 18px;
    }
}   