.modalOutside {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #151515d0;
    z-index: 9999;
    display: none;
    padding: 15px;
}

.modalOutside .modalInside {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    color: #000;
    max-width: 500px;
    margin: 20vh auto 0;
    padding: 20px 40px;
    border-radius: 20px;
    position: relative;

}

.modalOutside .modalInside h2 {
    font-size: 26px;
    font-weight: 700;
}

.modalOutside .modalInside a {
    margin-top: 10px;
    padding: 10px;
}

.modalOutside .modalInside a:hover {
    background-color: #eee;
    border-radius: 10px;
}

.modalOutside .modalInside .close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
}