* {
    margin: 0;
}

.popup-1-overlay {
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-1-row {
    width: 100%;
    display: flex;
    justify-content: center;
}

.popup-1-modal {
    line-height:1;
    position: relative;
    /*border: 1px solid #000;*/
    z-index: 5000;
    width: 600px;
    min-width: 600px;
    min-height: 425px;
    height: auto;
    background: #fff;
    /*border-radius: 25px;*/
    max-width: 90%;
}

.popup-1-close-button {
    position: absolute;
    z-index: 9999;
    right: 15px;
    top: 15px;
}

    .popup-1-close-button:hover {
        cursor: pointer;
    }

.popup-1-title {
    width: 50%;
    text-align: center;
    font-size: 40px;
    padding-top: 40px;
    max-height: 25%;
}

.popup-1-subtitle {
    padding-top: 20px;
    text-align: center;
    height: 20%;
    width: 60%;
    color: grey;
}

.popup-1-content {
    width: 80%;
    height: 30%;
    text-align: center;
    margin-top: 30px;
    font-size: 1.8rem;
    font-family: Arial;
}

.popup-1-footer {
    margin-top: 30px;
    gap: 15px;
    display: grid;
}

    .popup-1-footer a {
        display: flex;
        justify-content: center;
    }

#popup-1-footer {
    margin-bottom: 20px;
}

.popup-1-button {
    font-size: 2rem;
    border-radius: 10px;
    color: #fff;
    padding: 10px;
    transition: .5s ease-in-out;
    border: none;
}

    .popup-1-button:hover {
        filter: brightness(1.05);
        cursor: pointer;
        transform: scale(1.05);
    }

@media (max-width: 600px) {
    .popup-1-modal {
        transform: scale(0.8);
    }
}
