.disclaimer {
    width: 70%;
    height: 80%;
    border-radius: 5px;
    background-color: #f2f2f2;
    border-color: #ccc;
    font-size: 16px;
    text-align: center;
    overflow: scroll;
}

.disclaimer::backdrop {
    backdrop-filter: blur(3px);
}

.disclaimer div.terms {
    width: 80%;
    height: 50%;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;

    text-align: left;
    order: 1;
}

.disclaimer p {
    margin: 10px 0 10px 0;
}

.disclaimer p.title {
    font-size: 20px;
}

.disclaimer button {
    background-color:#f5b85f;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 7px;
    height: 30px;
    width: 100px;
    font-size: 20px;
    margin: 2% 0 2% 0;
}

.disclaimer button:hover {
    background-color: #2f99a5 !important;
}

@media screen and (max-width: 767px) {
    .disclaimer {
        font-size: 12px;
    }

    .disclaimer p.title {
        font-size: 16px;
    }

    .disclaimer button {
        font-size: 12px;
    }
}
