/* Structure */
body
{
    font-family: Arial, Helvetica, sans-serif;
    background-color: bisque;
}


.hidden
{
    display: none;
}

/* Contact */
.contact
{
    
}
 


/* Typeography */
#project-h1
{
    text-align: center;
}

#goodbye
{
    text-align: center;
    margin-top: 5%;
}
#header-h1
{
    text-align: center;
}
#home-link
{
    text-decoration: none;
    color: black;
}

/* main-nav */
#hamburger div 
{
    width: 35px;
    height: 5px;
    background-color: black;
    margin: 6px 0;
}
.hide-small
{
    display: none;
}
#nav-items li 
{
    list-style-type: none;

}
#nav-items a 
{
    text-decoration: none;
    color: black;
}

/* main content */
label,
input {
    display: inline-block;
}
label {
    width: 165px;
    text-align: left;
    padding: 5px;
}

@media only screen and (min-width: 600px) 
{
    #hamburger div
    {
        display: none;
    }
    .hide-small
    {
        display: block;
    }
    #nav-items li 
    {
        display: inline-block;
        justify-content: space-between;
        margin-left: 10.5%;
        font-size: 1.5em;
    }
    .contact
    {
        display: flex;
        justify-content: space-evenly;
        margin-top: 4%;
    }
    #content
    {
        flex: 1;
        margin-left: 10.5%; 
    }
    #myInfo
    {
        margin-right: 10%;
    }
    #img1
    {
        display: block;
        margin: auto;
    }
}