#project-history{
    flex: 1;
    display: flex;
    flex-direction: row;
}
.project-section{
    margin: 2em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.project-item{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2.5% 5%;
    border-radius: 5px;
    box-shadow: 0 0px 2px 1px rgba(0,0,0,0.2);
    width: 20em;
    height: 25em;
}
.project-section-header{
    display: flex;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5%;
    font-size: 1.125em;
}
.project-title{
    font-weight: bold;
}
.project-image {
    flex: 5;
    width: 100%;
    margin-bottom: 2.5%;
}
.project-description{
    flex: 1;
}
.project-description-item{
    padding: 1% 0;
    font-size: 0.8em;
}
#canine-classifier{
    background-image: url("assets/cc_abszoug.jpg");
    background-size: 85%;
    background-repeat: no-repeat;
    background-position: center;
}
#reductiscope{
    background-image: url("assets/reductiscope_screenshot.png");
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
}
.project-item a {
    text-decoration: none;
    color:rgb(60, 112, 255);
}
.project-item .social-icon i{
    color: black;
}
.project-item .social-icon i:hover{
	color: rgb(50, 75, 255);
}