.modal {
    position: fixed;
    display: none;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    overflow: auto;
    transform: translate(50, 50);
    z-index: 100;
    backdrop-filter: blur(25px);
    background-color: rgba(255, 255, 255, 0.8);
    background-blend-mode: color-burn;
}

.modal>.header {

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 1rem;
    border-bottom: .2rem solid var(--black1);
}

.modal-content {
    display: block;
    margin: 0 auto;
    max-width: 1200px;
    padding: 1rem;
}


@media screen and (max-width: 600px) {


    .modal-content {
        max-width: 1200px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}