.arround-business-hours {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.business-hours {
    background-color: #F1E5E0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 80rem;
    height: 30rem;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.40));
    font-family: 'Nunito', sans-serif;
}

.business-hours h2 {
    margin-bottom: 2.5rem;
}

.business-hours td {
    margin-top: 0.5rem;
    width: 20rem;
}

.column-2 {
    display: flex;
    justify-content: flex-end;
}

.contact-info {
    display: flex;
    justify-content: space-evenly;
    margin-top: 5rem;
}

.block-contact-info {
    background-color: #DEDBD2;
    width: 25rem;
    height: 25rem;
    border-radius: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
    font-size: 2em;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.40));
}

@media screen and (max-width: 1000px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .block-contact-info {
        margin-top: 2rem;
    }
}

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

    .business-hours td {
        width: 15rem;
    }

    .block-contact-info {
        width: 20rem;
        height: 20rem;
        font-size: 1.5em;
    }
}

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

    .business-hours {
        height: 20rem;
    }

    .business-hours td {
        width: 10rem;
        font-size: 0.7em;
    }

    .block-contact-info {
        width: 15rem;
        height: 15rem;
        font-size: 1em;
    }

}