@media (min-width: 35rem) {
    body {
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#5c7aea+0,e6e6e6+100 */
        background: #5c7aea; /* Old browsers */
        background: -moz-linear-gradient(top,  #5c7aea 0%, #e6e6e6 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(top,  #5c7aea 0%,#e6e6e6 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom,  #5c7aea 0%,#e6e6e6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5c7aea', endColorstr='#e6e6e6',GradientType=0 ); /* IE6-9 */
        }

    section {
        padding: 2rem;
        background-color: #e6e6e6;
        border-radius: 10px;
        margin: 2rem 0;
    }

    h1 {
        font-family: 'Lora', serif;
        font-size: 40px;
        text-shadow: 2px 2px gray;
    }
    
    h2 {
        font-size: 30px;
        text-align: center;
    }

    h3 {
        font-size: 20px;
    }
    
    p {
        font-size: 15px;
    }

    header img {
        width: 150px;
        height: auto;
    }

    .hero_img {
        border-radius: 10px;
    }

    .summarySection {
        position: relative;
    }

    .weatherSummary {
        position: absolute;
        bottom: 5rem;
        left: 5rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        border: 1px solid #E6E6E6;
        background-color: #14279B;
        color: #E6E6E6;
        grid-gap: .5rem;
        box-shadow: 0 0 30px #333;
        background: radial-gradient(#5c7aea, #14279B);
        opacity: .9;
        width: 40%;
    }

    .forecast_img {
        width: 70px;
        height: auto;
    }

    .forecast {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        justify-content: center;
        grid-gap: 2rem;
        grid-auto-columns: minmax(100px, auto);
        margin-bottom: 3rem;
    }

    .gridHeadline {
        grid-column: 1/6;
        font-size: 3rem;
        color: #14279B;
        text-shadow: 2px 2px gray;
    }

    .grid_item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: 1px solid #333;
        background: radial-gradient(#5c7aea, #14279B);
        color: #E6E6E6;
        border-radius: 10px;
    }

    .weatherDescription {
        margin: 0;
        text-transform: capitalize;
        color: yellow;
        letter-spacing: 1px;
        font-size: 1.1rem;
    }

    .forecastTemperature {
        letter-spacing: 1px;
        font-size: 1.3rem;
    }

    .grid_item h3 {
        color: #14279B;
        background-color: #E6E6E6;
        width: 100%;
        border-radius: 10px 10px 0 0;
    }

    .article_img {
        float: right;
        
        margin: 1rem;
        box-shadow: 0 0 15px #333;
    }

    .articleText {
        font-size: 1.3rem;
        line-height: 2rem;
        color: #14279B;
    }

    .contactInfo {
        display: grid;
        grid-template-columns: 50% 50%;
        align-items: center;
        justify-items: center;
        grid-gap: 1rem;
    }

    .icon {
        width: 30px;
    }

    .social_icon {
        width: 30px;
        padding: 0 1rem;
    }

    .map_img {
        grid-column: 1/2;
        grid-row: 1/2;
        width: 100%;
    }

    .grid2 {
        grid-column: 2/3;
        grid-row: 1/2;   
    }

    .galleryGrid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 2rem;
        max-width: 100%;
    }

    figcaption {
        max-width: 100%;
    }

    figure img {
        width: 700px;
        height: 300px;
    }

    /*------ HOME PAGE ARTICLE & IMAGE -------*/
    .imageDiv {
        text-align: center;
    }

    .homeStoryImage {
        max-width: 60%;
        float: right;
        max-width: 50%;
        margin: 1rem;
        box-shadow: 0 0 15px #333;
    }

    .subHeading {
        margin: 1rem;
        font-style: italic;
    }

    /* ------- EVENTS ---------*/
    .eventsDiv {
        color: white;
        text-align: center;
        margin: 1.5rem 5rem;
        border: 3px solid #5c7aea;
        border-radius: .5rem;
        background: radial-gradient(#5c7aea, #14279B);
    }

    .eventsDiv p {
        font-size: 1.3rem;
    }

    /*----------- CARDS ------------*/

    .cards {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: .5rem;
        padding: .5rem 0;
    }
    
    .cards section {
        display: grid;
        padding: 1rem;
        max-width: 100%;
        border-radius: .5rem;
        justify-content: center;
        background-color: #e6e6e6;
        
    }
    
    .cards img {
        max-width: 100%;
        border-radius: .5rem;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }

    .cards h2 {
        font-size: 3rem;
        color: #14279B;
    }

    .cards p {
        font-size: .9rem;
        margin: .3rem;
        text-align: center;
        color: #14279B;
        text-shadow: 0 0 15px #e6e6e6;
    }

    .cards .motto {
        font-size: 1.3rem;
        font-style: oblique;
    }
}