.modal {
    padding: 1rem;
    border-radius: 20px;
    width: 80%;
    height: 70%;
    position: absolute;
    background-color: #003289;
    z-index: 3;
    box-shadow: black 0px 1px 20px 0px;

    animation: modal-fade 0.25s;

    display: flex;
    flex-direction: column;
}

.modal.show {
    display: block;
}

.modal.hide {
    display: none;
}

.modal-header {
    height: 10%;
    display: flex;
    justify-content: space-between;
}

.modal-exit {

}

.modal-exit:hover{
    cursor: pointer;
}

@keyframes modal-fade {
    0%{
        opacity: 0;
        transform: scale(0.8);
    }
    50%{
        opacity: 0.5;
        transform: scale(1.1);
    }
    100%{
        opacity: 1;
        transform: scale(1);
    }
}

.modal-body{
    height: 90%;
}