@media screen and (min-width: 760px) {

    /* ------- hero styling  --------*/
    .hero {
        width: 100%;
        max-height: 600px;
        overflow: hidden;
    }

    .overlay h2 {
        color: #000;
        font-size: 3rem;
        padding: 1rem 1rem 0 1rem;
    }

    .hero a {
        display: inline-block;
        background-color: var(--primary-color);
        padding: 0.5rem 3rem;
        margin-bottom: 2rem;
        text-align: center;

        color: var(--text-color);
        font-weight: bold;
    }

    .hero a {
        padding: 1rem 6rem;
        font-size: 1.5rem;
    }

    /* ------- .main-content styling  --------*/
    .main-content {
        padding: 0 5rem 5rem 5rem;
    }

    /* ------ weather-block styling -----*/
    .weather-block {
        flex-direction: row;
    }

    .weather-block section:first-of-type {
        flex-grow: 4;
    }

    .weather-block section:nth-of-type(2),
    .weather-block section:nth-of-type(3) {
        flex-grow: 1;
    }

    /*------- gold-silver-members syling ------*/
    .gold-silver-members h3 {
        font-size: 1.5rem;
        padding-top: 5rem;
        padding-bottom: 1.5rem;
    }

    #gold-or-silvermembers-block {
        flex-direction: row;
        justify-content: center;
    }

}