.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    padding: 5px;
    margin: auto;
    width: 80%;
    top: 50%;
    left: 50%;
    max-width: 800px;
    position: absolute;
    display: flex;
    align-items: center;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
}

.modal-content .content{
    width: 100%;
    background: var(--bg-modal);
    padding: 15px 10px;
    border-radius: 5px;
    border: 2px solid var(--clr-secondary);
    box-shadow: 0 0 10px 5px rgba(0,0,0, 55%);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover, .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}