#centered {
    display:flex;
    flex-direction:column;
    align-items: center;
    flex-basis: 80%;
}
#name{
    width:100%;
    display:block;
    clear:left right;
    text-align:center;
    font-family: 'Dancing Script', cursive;
    color: black;
}
.nav-element{
    width:32%;
    display:inline-block;
    text-align:center;
    color:#000;
}
.nav-element:hover{
    background-color:#ddd;
}
.changebox {
    opacity:0.6; 
    background-color:#ffffff;  
    width:20px; 
    color:#FF3B3F;
    font-size:18px;
}

#image_controls {
    display:flex;
    justify-content:space-between;
}

#imagecontainer {
    width: 60%;
}

#project_container {
    width: 60%;
    
}

div.project {
    margin-top: 5px;
    padding: 2.5px;
    width: 100%;
    background-color: lightgray;
    border-style: solid;
    border-color: grey;
    border-width: 2px;
    border-radius: 5px;
}

div.project_with_photo {
    margin-top: 5px;
    padding: 2.5px;
    width: 100%;
    background-color: lightgray;
    border-style: solid;
    border-color: grey;
    border-width: 2px;
    border-radius: 5px;
    overflow: hidden;
}


div.project_with_photo img {
    float: right;
    width: 50%;
    max-height: 100%;
}