h2 {
    color: white;
    margin-top: 4vh;
    font-size: 7vh;
    text-decoration: underline;
    text-align: center;
}

.background-div {
    background-color: rgba(74, 63, 49, 0.8);
    border-radius: 10px;
    width: 70%;
    margin-left: 15%;
    margin-top: 4vh;
    padding: 8vh 4vw;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.day,
.time {
    font-size: 3.5vh;
    color: white;
}

footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: #3e1b15;
    color: white;
    text-align: center;
    z-index: 100;
}

@media (max-width: 1024px) {

    h2 {
        font-size: 4vh;
    }

    .background-div {
        padding: 4vh 4vw;
    }

    .day,
    .time {
        font-size: 2.2vh;
    }
}

@media (max-width: 345px) {
    .background-div {
        width: 90%;
        margin-left: 5%;
    }
}