
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: scroll;
}
.modal-content {
    position: relative;
    background-color: #00353A;
    margin: 130px auto;
    padding: 30px 20px;
    border: 1px solid #888;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.8s;
    max-width: fit-content;
    text-align: center;
    border-radius: 15px;
    color: #FFFFFF;
}
.modal-content h2 {
    text-align: center;
    margin: 0px;
}
.close {
    color: #ffffff;
    font-size: 50px;
    font-weight: bold;
    position: absolute;
    top: -70px;
    right: 0px;
}
.close:hover,
.close:focus {
    color: rgb(255, 230, 0);
    text-decoration: none;
    cursor: pointer;
}
.modal_active {
    display: block;

}
.overflow_hidden {
    overflow: hidden;
}
@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}