@font-face {
    font-family: 'Badabb';
    src: url('font/BADABB_.TTF') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Highly recommended to keep layout sizing predictable */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

hr {
    width: 75%;
    margin: 0 auto;
}

.header-container {
    padding: 5px 0 5px 25px;
    background-color: #999999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: space-between;
}

.header-container img {
    width: 50px;
    height: auto;
}

.hours-map {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.date {
    font-size: 3vw;
    font-weight: bold;
}

.time {
    font-size: 3vw;
    color: #123499;
    font-weight: bold;
}

.footer {
    background-color: #999999;
}

#banner {
    display: flex;
    justify-content: center;
}

#banner-row {
    display: flex;
    justify-content: center;
    text-align: center;
}

#banner-img {
    max-width: 50%;
}

#lower-footer {
    display: flex;
}

#design-by, #socials {
    width: 50%;
}

#socials {
    display: flex;
    flex-direction: column;
    text-align: center;  
}

#design-by {
    padding: 25px;
    display: flex;
    align-items: center;
}

#socials span {
    padding: 25px 0;
}

#upper-footer {
    height: 100%;
    background-color: #777777;
    padding: 40px 0;
}

/* #banner-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
} */

#hours {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    padding: 50px 0;
    font-family: 'Badabb', sans-serif;
    color: #555555;
}

#hours h2 {
    font-size: 4vw;
    padding-bottom: 2vw;
}

#google-map {
    width: 50%;
}

#google-map iframe {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
}

#time-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding-bottom: 3vw;
}

#time-1, #time-2 {
    width: 50%;
    display: flex;
    justify-content: center;
}

#time-1-container,
#time-2-container {
    width: fit-content;
    height: fit-content;
    text-align: left;
    font-size: 1.8vw;
    line-height: 1.5;
}

#time-1-container li,
#time-2-container li {
    list-style: none;
}

#line-1 {
    font-weight: bold;
}

#line-1, #line-2 {
    font-size: 1.5vw;
}

#line-3, #line-4 {
    font-size: 2vw;
}

#line-4 {
    font-weight: bold;
}

#line-1,
#line-2,
#line-3,
#line-4 {
    padding: 10px;
}

#upper-footer {
    text-align: center;
}

#lower-footer {
    padding-bottom: 40px;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    #hours, #google-map {
        width: 100%;
    }

    #hours h2 {
        font-size: 6vw;
        padding-bottom: 4vw;
    }

    #line-1, #line-2 {
    font-size: 3vw;
    }

    #line-3, #line-4 {
        font-size: 4vw;
    }

    #time-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 6vw;
    }

    #time-1-container,
    #time-2-container {
        text-align: center;
        font-size: 3.1vw;
        font-weight: 500;
    }

    #lower-footer {
        flex-direction: column;
    }

    #design-by {
        text-align: center;
        justify-content: center;
    }

    #design-by, #socials {
    width: 100%;
    }
}