* { margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
body { font-family: 'Quicksand'; font-weight: 400; color: rgba(0, 0, 0, 0.7) }
h1, h2, h3 { font-family: 'Playfair Display'; font-weight: 700; }
.navigation {background: #f2f3f7;width: 300px;display: flex;flex-direction: column;}
.blue { color: #2c98f0; }

img.profile {
    border-radius: 50%;
    margin-bottom: 30px;
}

.container {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
}

.footer {
    padding: 25px;
    margin-bottom: 20px;
    font-size: 15px;
}

.middle {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 25px;
}

.subtitle {
    text-transform: uppercase;
    font-size: 13px;
    margin-top: 10px;
}

.title {
    font-size: 22px;
}

.main h2 {
    font-size: 18px;
    margin-bottom: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1.8;
    position: relative;
}

.main {
    padding: 50px 70px;
    overflow-y: scroll;
    flex: 1;
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
}

.portfolio-item {
    width: 400px;
    height: 335px;
    overflow: hidden;
    position: relative;
    margin-right: 50px;
    margin-bottom: 50px;
}

.portfolio-item img {
    width: 100%;
}

.portfolio-item-img {
    height: 260px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #574f4f;
    border-radius: 5px;
}

.portfolio-tags {
    text-transform: uppercase;
    font-size: 13px;
    margin-top: 8px;
}

.portfolio-tags span {
    margin-right: 15px;
}

.portfolio-tags span:after {
    content: " ";
    position: absolute;
    width: 4px;
    height: 4px;
    background: #a2a2a2;
    border-radius: 50%;
    margin: 6px;
}

.portfolio-tags span:last-child:after {
    display: none;
}