.grid div {
    padding: 0.5em;
}

body {
    background-color: whitesmoke;
}

/* Container holding the image and the text */
.image-container {
    position: relative;
    text-align: center;
    color: white;
    padding-top: 6em;

}

/*.thumb {*/
/*    border-radius: 5%;*/
/*    border: 1px solid lightgray;*/
/*}*/

.sponsor-contact-info, .sponsor-hours-of-operation {
    text-align: left;
}

.sponsor-contact-info h3, .sponsor-hours-of-operation h3 {
    text-align: left;
}


a {
    text-decoration: none;
    color: black;
}

a:hover {
    text-decoration: underline;
    color: #2690d4;
}

.banner {
    opacity:100%;
}

strong {
    font-weight: bold;
}

h1 {
    font-size: 1.7em;
    font-weight: bold;
    text-align: center;
    margin: 0;
    padding: 0;
}
h4 {
    font-size: 1.2em;
    padding-bottom: 2.5em;
    text-align: center;
}

.general-info-paragraph h1 {
    font-size: 1.7em;
    font-weight: bold;
    text-align: left;
    margin: 0;
    padding: 0;
}

.general-info-paragraph p {
    text-align: left;
    font-size: 1.2em;
}

.general-info-list {
    text-align: left;

}

.general-info-list ul li::before {
    content: "\272A";  /* Add content: \2022 is the CSS Code/unicode for a circled star */
    color: coral; /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1.2em; /* Also needed for space (tweak if needed) */
    margin-left: 1em; /* Also needed for space (tweak if needed) */
}

.content-wrap {
    background: white;
    margin-top: 2em;
}


/* Style the list */
ul.breadcrumb {
    padding: 1rem 1rem;
    list-style: none;
    background-color: white;
    text-align: center;
}

/* Display list items side by side */
ul.breadcrumb li {
    display: inline;
    font-size: 1rem;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
    padding: .5rem;
    color: black;
    content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
    color: #0275d8;
    text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
    color: #01447e;
    text-decoration: underline;
}

.covid-notice {
    font-size: 1.3em;
    color: #ff0000;
}


@media all and (min-width: 600px) {

    .content-wrap {
        grid-column: 2/4;
    }
    .business-information-grid {
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }




}