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


.hidden
{
    display: none;
}

/* Projects */
.experience
{
    display: inline;

}
#project1
{
    margin-left: 11%;
    background-color: cornflowerblue;
    padding: 20px;
}
 
/* Images */
#img1
{
    width: 200px;
    height: 350px;
    margin-left: 10%;
    padding: 5px;
}


/* Typeography */
#experience-h1
{
    text-align: center;
}
#p1
{
    width: 75%;
}
#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;
}




@media only screen and (min-width: 600px) /* fix mobile for everything */
{
    #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;
    }
    .experience
    {
        display: flex;
        justify-content: space-evenly;
        margin-right: 7%;
        margin-top: 4%;
    }
    #img1
    {
        width: 500px;
        height: 525px;
        padding: 10px;
    }
}