* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #829985;
}

pre {
    padding: 0;
    margin: 0;
    display: block;
    font-family: monospace;
    white-space: pre;
    position: relative;
    right: 198px;
    top: -32px;
}

div {
    display: block;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #4d2323;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-behavior: smooth;
}

.container {
    max-width: 1380px;
    margin: 0 auto;
    min-height: 50px;
}

.main-container {
    display: flex;
    flex-wrap: wrap;
}

.section {
    display: block;
    width: calc(50% - 20px);
    padding: 10px;
    padding-bottom: 35px;
    border-bottom: 1px solid #672f2f;
}

.section-item span {
    color: #829985;
}

.section-profile {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 50px 30px 35px;
    border-bottom: 15px solid #d7d1c9;

}

.main-title {
    color: #3d3d3d;
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 10px;
    position: relative;
}

.main-title::after {
    content: "";
    position: absolute;
    bottom: -19px;
    left: 50%;
    margin-left: -70px;
    width: 140px;
    height: 2px;
    background-color: #829985;
}

.section-profile-logo {
    width: 200px;
    height: 200px;

}


.section-title {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #7b9c80;
}

.section-Courses,
.section-Languages{
    border-bottom: 0;
}

.section-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.section-item {
    position: relative;
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
    padding-left: 30px;
    font-weight: 550;
    color: #000;
}

.section-subtitle {
    display: block;
    font-size: 18px;
    margin-top: 20px;
    color: #5c5c5c;
    line-height: 50px;
    font-weight: 300;
    letter-spacing: 2px;
}

.section-item::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 2px;
    width: 14px;
    height: 14px;
    background-size: 14px 14px;
    background-image: url(img/point.svg);
}

.section-profile-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    text-align: center;
    text-transform: uppercase;
}

.header {
    background-color: #829985;
}



.nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
}

.nav-link {
    padding: 0 20px;
    line-height: 50px;
    list-style: none;
    text-decoration: none;
    color: #000;
}

.nav-link:hover {
    cursor: pointer;
    color: #015965;
    transition: .3s;
}

.footer {
    background-color: #829985;
    padding: 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    color: #fff;
}

.github {
    color: #fff;
    text-decoration: none;
    line-height: 45px;
}

.nav-link {
    position: relative;
    padding: 0 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
    line-height: 50px;
    color: #fff;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    bottom: -5px;
    width: calc(100% - 24px);
    height: 2px;
    background-color: #fff;
    opacity: 0;
    transition: .5s;
}


.rss {
    width: 121px;
    height: 45px;
    background-image: url(img/rs_school_js.svg);
    background-size: contain;
    background-repeat: no-repeat;
}