/* Main Content*/
.content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 70px;
    padding-bottom: 2px;
    overflow: auto;
}

.member-wrapper, .project-content {
    border-radius: 5px;
    background-color: #FFFFFF;
    box-shadow: 0 1px 1px 1px #999999;
    transition: all .5s ease;
}

.member-wrapper:hover,
.project-content:hover {
    background-color: #F1F8F7;
}
.member-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
    margin-left: 20px;
    flex: 1;
    min-width: 350px;
}
.member-pfp-name {
    text-align: center;
    margin: 10px;
}
.member-pfp-name img {
    height: 122px;
    width: 122px;
    margin: 0;
    border-radius: 5px;
    border: 3px solid #001B2E;
}
.member-wrapper h1 {
    width: 100%;
    margin: 10px auto;
    text-align: center;
}
.member-pfp-name p {
    margin-top: 5px;
    font-size: 14px;
}

.project-content {
    flex: 3;
    position: relative;
    min-width: 580px;
    padding: 15px;
    margin-top: 10px;
    margin-left: 5%;
    margin-right: 20px;
    line-height: 1.7;
}
#logo-cart {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 210px;
    width: 210px;
    margin: 20px;
    opacity: 0.5;
    
}

.project-content a {
    font-size: 18px;
    transition: all .5s ease;
}
.project-content h1 {margin: 10px 0;}
.project-content a:visited {color: #1F1F1F;}
.project-content a:hover {color: #B76D68;}
