#age-verification-modal:modal {
    /*background-color: beige;*/
    /*border: 2px solid burlywood;*/
    /*border-radius: 5px;*/
}

::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
}

#age-verification-form {
    display: flex;
    flex-direction: column;
}

#age-verification-form button {
    width: 100%;
}

#age-verification-form p {
    align-self: center;
}

.btn-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#age-verification-confirm {
    background-color: rgba(0, 255, 0, 0.25);
}

#age-verification-decline {
    background-color: rgba(255, 0, 0, 0.25);
}

.logo-wrapper {
    max-width: 20vw;
    align-self: center;
}

.logo {
    width: 100%;
    height: 100%;
}

.heading {
    margin-top: 1rem;
}

