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

/* Images */
#img2, #img3
{
    width: 500px;
    height: 300px;
}

.hidden
{
    display: none;
}

/* Buttons */
#buttons
{
    display: flex;
    justify-content: center;
}
 



/* Typeography */
#header-h1
{
    text-align: center;
}
#home-link
{
    text-decoration: none;
    color: black;
}
#resume-header
{
    text-align: center;
    color: black;
}
#resume a
{
    text-decoration: none;
}
#resume :hover
{
    color:brown;
}





/* 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;
}



@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%;  
        margin-top: 2%;
        font-size: 1.5em;
        text-align: center;
    }
    #portfolio
    {
        text-align: center;
    }
    #p1
    {
        width: 50%;
        margin-left: 25%;
        text-align: center;
    }
    #img2, #img3
    {
        margin-left: 32%;
        width: 500px;
        height: 300px;
    }
}