@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

:root {
    --primary-color: #2F3133;
    --secondary-color: #B7C1C7;
    --highlight-color: #67026e;
    --highlight-color2: #7fff00;
}

* {
    box-sizing: border-box;
}

body, h1, h2, h3, p {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

/* @media query screen and max-width 600px */
@media screen and (max-width: 600px) {
    
    ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-color: black;
        position: fixed;
        top: 0;
        width: 100%;
    }

    li {
        float: left;
    }

    li a {
        display: block;
        color: var(--secondary-color);
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

    li a:hover {
        background-color: var(--highlight-color);
    }

    #welcome-section {
        width: 100%;
        height: 100vh;
        padding-top: 45px;
        text-align: center;
        margin-bottom: 75px;
        padding-bottom: 100px;
    }

    .welcome {
        width: 80%;
        height: 80%;
        display: block;
        margin: 0 auto;
       
    }

    #about
        a#horse {
        text-decoration: none;
        color: var(--highlight-color2);
    }

    #about
        a#horse:hover {
        text-decoration: none;
        background-color: var(--highlight-color);
    }

    a#profile-link {
        text-decoration: none;
        color: var(--highlight-color2);
    }

    a#profile-link:hover {
        background-color: var(--highlight-color);
    }

    a#contact-link {
        text-decoration: none;
        color: var(--highlight-color2);
        font-size: larger;
    }

    a#contact-link:hover {
        text-decoration: none;
        background-color: var(--highlight-color);
        font-size: larger;
    }

   /*  #name {
        width: 400px;
    }

    #email {
        width: 400px;
    }

    #subject {
        width: 400px;
    }

    #message {
        width: 400px;
        height: 75px;
    }

    .btn {
        width: 5rem;
        height: 2rem;
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        font-size: 1em;
    }

    .btn:hover {
        background-color: var(--highlight-color2);
    } 

    Need to correct HTML and form code before using this CSS code */
    
}



/* @media query screen and min-width 601px */
@media screen and (min-width: 601px) {
    
    ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-color: black;
        position: fixed;
        top: 0;
        width: 100%;
    }

    li {
        float: left;
    }

    li a {
        display: block;
        color: var(--secondary-color);
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 1.5em;
    }

    li a:hover {
        background-color: var(--highlight-color);
    }

    #welcome-section {
        width: 100%;
        height: 100vh;
        padding-top: 50px;
        text-align: center;
        margin-bottom: 75px;
        padding-bottom: 100px;
    }

    .welcome {
        width: auto;
        max-height: 100%;
        display: block;
        margin: 0 auto;
    }

    #about
        a#horse {
        text-decoration: none;
        color: var(--highlight-color2);
    }

    #about
        a#horse:hover {
        text-decoration: none;
        background-color: var(--highlight-color);
    }

    a#profile-link {
        text-decoration: none;
        color: var(--highlight-color2);
    }

    a#profile-link:hover {
        background-color: var(--highlight-color);
    }

    a#contact-link {
        text-decoration: none;
        color: var(--highlight-color2);
        font-size: larger;
    }

    a#contact-link:hover {
        text-decoration: none;
        background-color: var(--highlight-color);
        font-size: larger;
    }

    /*#name {
        width: 600px;
    }

    #email {
        width: 600px;
    }

    #subject {
        width: 600px;
    }

    #message {
        width: 600px;
        height: 200px;
    }

    .btn {
        width: 5rem;
        height: 2rem;
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        font-size: 1em;
    }

    .btn:hover {
        background-color: var(--highlight-color);
        color: var(--secondary-color);
        border-color: var(--secondary-color);
    }  
    
    Need to fix html and form code before using this CSS code */

}

footer {
    text-align: center;
}