#website-body-wrapper {
    padding: 0 20vw;
}

#content-wrapper {
    width: 70%;
}

#right-sidebar-wrapper {
    width: 30%;
}

.right-side-bar {
    width: 100%;
    height: 100%;
    padding: 1vw;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.right-side-bar hr {
    border: 0;
    height: 1px;
    background: white;
    margin: 10px;
}

.right-side-bar h4 {
    color: white;
    font-size: 1.25vw;
    text-align: center;

}

.join-us-button {
    background-color: white;
    color: var(--primary);
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 1.25vw;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
    font-weight: bold;
}

.join-us-button:hover {
    background-color: var(--secondary);
    color: white;
}

.how-to-Contact-us a {
    text-decoration: none;
    color: white;
}

.vertical-space {
    padding-top: 20px;
}


.error {
    color: red;
}

@media screen and (max-width: 900px) {
    #website-body-wrapper {
        padding: 0;
    }

    .right-side-bar h4 {
        font-size: 3vw;
    }

    .right-side-bar h2 {
        font-size: 5vw;
    }

    .right-side-bar h3 {
        font-size: 4vw;
    }

    .join-us-button {
        padding: 10px 10px;
        font-size: 2.5vw;
    }

    .how-to-Contact-us a {
        font-size: 2.5vw;
    }

    .how-to-Contact-us h5 {
        font-size: 2.5vw;
    }

    .hours-section {
        font-size: 2.5vw;
    }
}