*,
*::before,
*::after {
    box-sizing: border-box;
}

body {

    max-width: 1200px;
    margin: 0 auto;
    font-family: Verdana;
    font-size: 16px;
    line-height: 1.5;

}

/* Header fonts */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Georgia, serif;
    /* font-size: 1.5em; */
    margin-bottom: 0.5em;

}

header {
    text-align: center;
    letter-spacing: .1rem;

}

nav a {

    padding: 10px 20px;
    background-color: transparent;
    letter-spacing: .2rem;

}

a:hover {
    /* hover color */
    color: #d23f2f;
}


footer {

    display: flex;
    justify-content: space-around;

}

section {


    margin: 30px 0 150px 0;
}


/* establish a grid container */
.grid-container {
    display: grid;
    grid-template-columns: repeat(12, [col-start] 1fr);
    gap: 20px;
}

/* ======================= */

/* === Mobile first =====
Select every direct child of .grid-container,
no matter what tag it is. */

/* small screens */
.grid-container>* {
    padding: 10px;
    grid-column: col-start / span 12;
}

.hide-on-mobile {
    display: none;
}


/* aside {

    display: flex;
    justify-content: center;
} */

/* nav for small screens */
nav ul {
    display: flex;
    flex-direction: column;

}

/* =================================== */
/* medium screens */

@media (min-width: 576px) {

    .main,
    .footer {
        grid-column: col-start / span 12;
    }

    /* nav medium screen */
    nav ul {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }
}

/* ====================================== */
/* large screens */

@media (min-width: 768px) {
    .aside {
        grid-column: col-start / span 4;
        grid-row: 2 / 4;
    }

    .main {
        grid-column: col-start 5 / span 9;
        grid-row: 2 / 4;
    }

    .footer {
        grid-column: col-start / span 12;
    }

    .hide-on-mobile {

        display: flex;
    }

    /* nav large screen */
    nav ul {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }
}

/* ========================================== */

ul {
    list-style: circle inside;
    margin: 0 0 60px 0;
}

ol {
    list-style: decimal inside;
}

ol,
ul {
    padding-left: 0;
    margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
    font-size: 100%;
    margin: 1rem 0 1rem 3rem;
}

li {
    margin-bottom: 0.5rem;
    text-decoration: crimson;
}

img {

    max-width: 400px;
    margin: 30px 0 30px 0;
}

/* ======================================= */
/* makes the main div scroll it's oontent */
.outer1 {
    /* width: 300px; */
    height: 800px;
    /* Fixed-size container */
    /* border: 1px solid #333; */
    overflow: hidden;
    /* Container stays fixed */
}

.inner1 {
    height: 100%;
    overflow-y: auto;
    /* Scroll vertically */
    padding: 10px;
}

/* ========================================== */

.hours ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.hours li {
    display: grid;
    grid-template-columns: 80px auto;
    /* adjust width as needed */
    padding: 2px 0;
}