.modal-agreement {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    padding: 100px 30px;
}

.modal-inner {
    background-color: white;
    padding: 20px;
    align-items: center;
    max-width: 600px;
}

.modal-inner a {
    text-align: center;
    flex: 1;
}

.modal-inner #age-agree-button {
    background-color: #036b0f;
}

.modal-inner #age-leave-button {
    background-color: black;
}

.modal-inner .age-agreement {
    gap: 20px;
}

.modal-inner .age-agreement-header {
    padding-bottom: 20px;
}

.modal-inner .age-agreement-buttons {
    display: flex;
    gap: 20px;
}

@media (max-width: 420px) {
    .modal-inner .age-agreement-buttons {
        flex-direction: column;
    }

    .modal-inner a {
        width: 80%;
    }
}