
.modal {
    position: fixed;
    z-index: 10;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.modal.hidden {
    display: none;
}

/* Modal Content */
.modal-content {
    <!-- background-image: url("../images/vegas-background.webp"); -->
    background-color: white;
    background-size: cover;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    min-height: 70%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    box-shadow: 50px 0 100px  #1396da30 inset, -50px 0 100px  #be42ff30 inset;

}

.gradient-border {
    border-width: 3px;
    border-style: solid;
    border-image: linear-gradient(135deg, #0079bd, #1ef5fa, #4471ea, #eaedfd, #7459f4, #db85fb, #fbe8ff, #ea7dfa, #eb53f9, #fca4ff, #8624e3) 1;
}

.age-check-image {
    margin: 0 auto;
    display: block;
    width: 800px;
    max-width: 100%;
}

.blue-neon-text {
    text-shadow: -1px 1px 1px #1396da,
    1px 1px 1px #1396da,
    1px -1px 1px #1396da,
    -1px -1px 1px #1396da,
    0 0 7px #1396da,
    0 0 10px #1396da,
    0 0 21px #1396da,
    0 0 42px #1396da,
    0 0 82px #1396da
}

.purple-neon-text {
    text-shadow: -1px 1px 1px #be42ff,
    1px 1px 1px #be42ff,
    1px -1px 1px #be42ff,
    -1px -1px 1px #be42ff,
    0 0 7px #be42ff,
    0 0 10px #be42ff,
    0 0 21px #be42ff,
    0 0 42px #be42ff,
    0 0 82px #be42ff
}

.age-check-question {
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 1px;
    font-weight: 300;
    font-size: 60px;
    color: #fff;
    text-align: center;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.answer-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 60px;
    color: #fff;
    text-align: center;
}

.button {
    transition: .2s ease-in-out 0s;
    border-radius: 30px;
    cursor: pointer;
    height: 60px;
    width: 200px;
}

.button:hover {
    transform: scale(1.05);
}

.yes-button {
    border: 2px solid #fff;
    box-shadow: -2px 2px 1px #90ffff,
    2px 2px 1px #90ffff,
    2px -2px 1px #90ffff,
    -2px -2px 1px #90ffff,
    0 0 15px #90ffff88,
    0 0 15px #90ffff88 inset;
    background-image: linear-gradient(to top, #0087c2 -20%, #00090d 50%);


}

.no-button {
    border: 2px solid #fff;
    box-shadow: -2px 2px 1px #be42ff,
    2px 2px 1px #be42ff,
    2px -2px 1px #be42ff,
    -2px -2px 1px #be42ff,
    0 0 15px #be42ff88,
    0 0 15px #be42ff88 inset;
    background-image: linear-gradient(to top, #be42ff -20%, #00090d 50%);

}

.age-warning {
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 60 px;
    color: #fff;
    text-shadow: -1px 1px 1px #e50258,
    1px 1px 1px #e50258,
    1px -1px 1px #e50258,
    -1px -1px 1px #e50258,
    0 0 7px #e50258,
    0 0 10px #e50258,
    0 0 21px #e50258,
    0 0 42px #e50258,
    0 0 82px #e50258;
    text-align: center;
    max-width: 400px;
    line-height: 200%;
}


@media screen and (min-width: 450px) {
    .age-check-question  {
        font-size: 20px;
    }
}
@media screen and (min-width: 992px) {
    .answer-text {
        font-size: 20px;
    }
    .button {
        transition: .2s ease-in-out 0s;
        border-radius: 40px;
        cursor: pointer;
        height: 80px;
        width: 280px;
    }


}
