html
    {
        --brand-purple: #352380;
        --dark-purple: #5d4e99;
        --medium-purple: #857bb2;
        --brand-blue: #6cdbd6;
        --blue-dark: #87bbb8;
        --text-color: #1c1344;
        --gray: #eae9f2;
        --white: #fff;

    }

*
    {
        box-sizing: border-box;
    }

body
    {
        margin: 0;
        font-family: 'Roboto', sans-serif;
    }

#logo
    {
        width: 13em;
        margin-top: 1em;
    }

.hero-image-micro
    {
        
        background-image: url(../assets/micro-hero.png);
        height: 50vw;
        margin:25% 0 2em 0;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        z-index: 5;
    }

.hero-image-clinic
    {
        background-image: url(../assets/clinic-hero.png);
        height: 50vw;
        margin: 6em 0 2em 0;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        opacity: .9;
    }

.hero-text
    {
        text-align: center;
        /* padding-top: .05em; */
        padding-left: 6.5em;
        color: var(--text-color);
        letter-spacing: .05em;
        font-family: "montserrat", serif;
    }

.hero-text-clinic
    {
        text-align: center;
        padding-top: 3em;
        padding-left: 1em;
        color: var(--text-color);
        letter-spacing: .05em;
        font-family: "montserrat", serif;
    }

main
    {
        text-align: center;
        color: var(--text-color);
        margin: 3em 0;
    }

.title-text
    {
        margin: 6em 0 2em 0;
        padding: 3em;
        font-family: "montserrat", serif;
        letter-spacing: 1px;
    }

#our-mission
    {
        margin-top: 2em;
        line-height: 1.5;
    }

#naws-facts
    {
        margin-top: 4em;
        line-height: 1.5;
    }

#statistics
    {
        margin-top: 4em;
        line-height: 1.5;
    }

#statistics ul li
    {
        text-align: left;
    }



.top-statement
    {
        padding-bottom: 2em;
        border-bottom: solid 2px var(--text-color);
        letter-spacing: .05em;
        line-height: 1.4;
    }

.main-paragraph
    {
        margin-top: 3em;
        line-height: 1.7;
    }

.spay-info
    {
        margin-top: 4em;
        line-height: 1.5;
        background-color: var(--medium-purple);
        padding: .5em;
        border-radius: 2em;
    }

.vaccination-info
    {
        margin-top: 4em;
        background-color: var(--medium-purple);
        padding: .5em;
        border-radius: 2em;
        line-height: 1.5;
    }

.vaccination-info ul li
    {
        text-align: left;
    }

.see-also
    {
        margin-top: 4em;
    }
    
.see-also a
    {
        text-decoration: none;
        color: var(--text-color);
    }

.see-also a:hover, footer a:hover
    {
        color: var(--medium-purple);
    }

.pricing
    {
        margin-top: 3em;
        text-decoration: underline;
    }

.found-animals
    {
        margin-top: 3em;
        line-height: 1.4;
    }

.found-animals ul li
    {
        text-align: left;
    }

.pet-link ul li
    {
        text-align: left;
        line-height: 1.4;
    }
#contact a
    {
        text-decoration: none;
        color: var(--text-color);
    }

#contact ul
    {
        text-align: left;
        line-height: 1.5;
    }

#location
    {
        background-image: url(../assets/map.jpg);
        height: 100vh;
        background-size: cover;
        margin-top: 5em;
    }

#location a
    {
        color: var(--text-color);
        text-decoration: none;
    }

header
    {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: -.5em;
        left: -.1em;
        z-index: 20;
        width: 100%;
        background-color: var(--white);
        border: solid 1em var(--white);
        box-shadow: 0 4px 2px -2px gray;
    }

#donateButton
    {
        border: none;
        background-color: var(--brand-purple);
        border-radius: .5em;
        color: #fff;
        padding: 3%;
    }

#donateButton:hover
    {
        background-color: var(--dark-purple);
    }


#menuButton
    {
        width: 10%;
        font-size: 9vw;
        color: var(--brand-purple);
        margin-right: 7%;
    }

#menuButton:hover
    {
        color: var(--dark-purple);
    }

.nav-toggle
    {
        display: none;
    }


.nav-menu
    {
        width: 100%;
        background-color: rgba(53, 35, 128, .8);
        list-style-type: none;
        position: fixed;
        top: -1em;
        margin-top: 5em;
        padding-top:1em;
        padding-bottom: 1em;
        font-size: 200%;
        line-height: 2;
        z-index: 25;
    }

.nav-menu a
    {
        color: var(--white);
        text-decoration: none;
        font-size: 80%;
        padding-top: .5em;
    }

.nav-menu a:hover
    {
        color: var(--text-color);
    }

.titleText
    {
        font-family: 'Montserrat', sans-serif;
        letter-spacing: .08em;
        text-align: center;
        color: var(--text-color);
        margin:5em auto 2em auto;
    }

.mediaButtons
    {
        font-size: 1.3em;
        display: flex;
        justify-content: space-around;
        margin-bottom: 3em;
    }

.mediaButtons a
    {
        font-size: 1.3em;

        color: var(--brand-blue);
    }

.mediaButtons a:hover
    {
        color: var(--blue-dark);
    }

#loginButtonContainer
    {
        text-align: center;
    }

#loginButton
    {
        background-color: var(--dark-purple);
        color: var(--white);
        border: none;
        border-radius: .5em;
        padding: 1em 2em;
        margin-bottom: 3em;
    }

#loginButton:hover
    {
        background-color: var(--brand-purple);
    }

#operationHours
    {
        text-align: center;
        color: var(--text-color);
    }

#operationHours li
    {
        list-style-type: none;
        margin-left: -2.5em;
        line-height: 1.5;
    }

#operationHours ul
    {
        margin-top: 0;
    }

.hours
    {
        margin-bottom: 1.5em;
    }

.days
    {
        font-weight: bold;
    }

#foodPantry
    {
        margin-bottom: 0;
    }
#formsHeader
    {
        color: var(--text-color);
    }

#forms
    {
        text-align: center;
        margin-top: 4em;
        display: flex;
        flex-direction: column;
        align-content: space-around;
    }

.formDownload
    {
        margin-bottom: 1em;
        border: none;
        color: var(--white);
        background-color: var(--dark-purple);
        padding: 1em;
        border-radius: .3em;
    }

.formDownload:hover
    {
        background-color: var(--brand-purple);
    }

#emailHeader
    {
        margin-top: 0;
    }

#emailList
    {
        display: flex;
        flex-direction: column;
        background-color: var(--medium-purple);
        padding: 2em;
        margin:4em auto;
        border-radius: 1em;
        text-align:left;
    }

#enterButton
    {
        margin-top: 1em;
        width: 6em;
        color: var(--white);
        background-color: var(--brand-purple);
        border: none;
        padding: .5em 1em;
    }    

#enterButton:hover
    {
        background-color: var(--dark-purple);
    }

footer
    {
        border-top: .07em solid var(--brand-purple);
        text-align: center;
        padding: 3em 2em;
    }

footer a
    {
        display: block;
        text-decoration: none;
        color: var(--text-color);
        
    }

.footer-address
    {
        font-size: 70%;
    }

.footer-address a
    {
        text-decoration: none;
        color: var(--text-color);
    }

.footer-address a:hover
    {
        color: var(--blue-dark);
    }

#sponsorContainer
    {
        list-style-type: none;
        font-size: 65%;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        align-content: space-around;
        margin-left: -3.85em;
        margin-top: 6em;
        color: var(--text-color);
    }

#sponsorContainer:hover
    {
        color: var(--blue-dark);
    }

#sponsorContainer a
    {
        text-decoration: none;
    }

.sponsor
    {
        color: var(--brand-purple);
    }

.partners
    {

        max-width: 10%;
    }


@media(min-width: 600px)
    {
        .titleText
            {
                font-size: 3em;
            }

        .mediaButtons a
            {
                justify-content: center;
            }

        #operationHours
            {
                font-size: 175%;
            }

        #forms button, #formsHeader, #donateButton, #loginButton
            {
                font-size: 150%;
            }

        .hero-text-clinic
            {
                padding-top: 8em;
            }

         .hero-image-micro
            {
                background-image: none;
                height: 5vh;
              
            }

        .hero-text
            {
                padding-left: 0;

            }

        
    }


@media(min-width: 700px)
    {
            
        #menuButton
            {
                display: none;
            }

        header
            {
                height: 100px;
            }

        #logo
            {
                max-width: 20%;
            }

        .nav-toggle
            {
                display: block;
                margin-top: 85px;
            }

        #donateButton
            {
                font-size: 80%;
                padding: 1em 2em;
            }
        .nav-menu
            {
                max-height: 40px;
                width: 100vw;
                position: fixed;
                display: flex;
                flex-direction: row;
                justify-content: space-around;
                padding:0;
                margin-top: 92px;
                font-size: 1.4em; 
            }

        
        .nav-menu a
            {
                padding: 8px 1em;
                font-size: 60%;
            }

        .titleText
            {
                margin-top: 180px;
                font-size: 150%;
            }

        .mediaButtons
            {
                justify-content: left;
                font-size: 80%;
            }
        
        .mediaButtons a
            {
                margin: 0 .5em;
            }

        #loginButton
            {
                font-size: 80%;
            }

        #operationHours, #forms button, #emailList
            {
                font-size: 70%;
            }

        #operationHours
            {
                margin-bottom: 4em;
            }

        #emailList
            {
                height: 100%;
            }



        .grid-container
            {
                display: grid;
                grid: 25vw / auto auto auto;
                height: 100vw;
            }

        .grid-container-clinic
            {
                display: grid;
                grid: 25vw / auto auto auto;
                min-height: 100vh;
            }

        .grid-container-micro
            {
                display: grid;
                grid: 40vw / auto auto;
            }

        .main-paragraph
            {
                margin: 3em 6em 0 6em;
                background-color: var(--medium-purple) ;
                padding: 1em 2em;
                border-radius: 2em;
            }

        .pet-link
            {
                margin-top: 3em;
            }

        #sponsorContainer
            {
                font-size: 110%;
            }

        #partnerContainer
            {
                display: flex;
                flex-flow: row wrap;
            }

        .top-statement
            {
                font-size: 80%;
                margin: 1em 5em;
            }

        .hero-text-clinic
            {
                font-size: 100%;
            }

        .hero-image-clinic
            {
               background-image: none;
               height: 150px;
            }

        .nav-menu
            {
                z-index: 5;
                top: 0;
                padding-top: 0;

            }

        .spay-info
            {
                margin: 4em 1em;
                padding: 1em;
                min-height: 310px;
            }

        .vaccination-info
            {
                margin: 4em 1em;
                padding: 1em;
                min-height:370px;
            }

        #location
            {
                max-width: 500px;
            }

        #location a:hover
            {
                color: var(--dark-purple);
            }

        #our-mission, #naws-facts
            {
                margin: 4em 6em;
            }
        
        #statistics
            {
                margin: 4em 14em;
            }
        }