
:root {
    --yellow: #a17246;
}

body {
    background-color: #e7e7e7;
}

.container {
    height: 100vh !important;
}

.logo {
    width: 50%;
}
.verify_div {
    text-align: center;
    display: flex;
    justify-content: center;
    /* border: 1px yellow solid; */
    width: fit-content;
    flex-direction: column;
    align-items: center;
}

.yellow-text {
    color: var(--yellow);
    font-size: 20px;
}

.age-text {
    font-size: 30px;
    font-family: "Roboto Condensed";
}

.btn.btn-arrow {
    color: var(--bs-light);
    background-color: var(--bs-primary);
    border-radius: 0;
}

.btn.btn-medium {
    padding: 1.1em 2.8em;
    font-size: 1.1em;
    letter-spacing: 2px;
}  

.btn-primary {
    border: none;
    background-color: #a17244;
    border-radius: 0px;
}

.btn-primary:hover {
    background-color: #c79a6d;
}

.btn-primary:focus {
    background-color: #c79a6d;
    border-color: #c79a6d;
}

.warning-text {
    /* text-decoration-style: dotted; */

    font-weight: 400;
}

.hidden {
    display: none;
}


@media screen and (max-width: 990px) {

    .logo {
        width: 80%;
    }

    .btn-group {
        width: 85% !important;
    }
}

