body {
    margin: 0;
    padding: 0;
    color: #000;
    font-family: 'Courier New', sans-serif;
}

.content {
    position: relative;
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    user-select: none;
}

@media screen and (max-width: 667px) {
    .content {
        flex-direction: column;
    }

    .content__left {
        padding-bottom: 0;
    }
}

.content__left .header {
    position: relative;
}

.content__left .header__title {
    margin-bottom: 3rem;
    font-size: 3rem;
    color: #D2B48C;
}

.content__left .header__image {
    width: 90%;
    max-width: 30rem;
    max-height: 30rem;
    margin-bottom: 3rem;
    border-radius: 50%;
}

.content__left .header__circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    background: #9d8362;
    border-radius: 50%;
    z-index: -1;
}

.content__left .header__circle:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.content__right {
    position: relative;
    background: #D2B48C;
}

.content__right:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 2rem);
    height: calc(100% - 4rem);
    margin: 2rem 2rem 2rem 0;
    border: 1px solid black;
    border-left: 0;
}

.content__left,
.content__right {
    padding: 3rem;
    width: 50%;
}

@media screen and (max-width: 667px) {
    .content__left,
    .content__right {
        width: auto;
    }
}

.content__left .section,
.content__right .section {
    margin-bottom: 2rem;
}

.content__left .section__title,
.content__right .section__title {
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.content__left .section__title:after,
.content__right .section__title:after {
    content: '';
    display: block;
    margin-top: 0.5rem;
    width: 4rem;
    height: 1px;
    background: black;
}

.content__left .list,
.content__right .list {
    list-style: none;
}

.languages .list-item__content:before,
.skills .list-item__content:before {
    content: '•';
}

.skills .list-item__content {
    color: #565656;
}

.education .list-item {
    margin-bottom: 1rem;
}

.list-item__title {
    font-size: 17px;
}

.education .list-item__content {
    margin-top: 0.5rem;
}

.content__copyrighting {
    position: absolute;
    bottom: 0.5rem;
    left: 20rem;
}

@media screen and (max-width: 667px) {
    .content__copyrighting {
        position: static;
        padding: 1.5rem 3rem;
        background: #d2b48cba;
        left: 0;
    }
}
