body {
    font-family: 'Montserrat', sans-serif;
    background-color: #F5F7FA;
    line-height: 24px;
}

img {
    width: 370px;
    margin-top: 40px;
}

h1 {
    font-size: 45px;
    font-weight: bold;
}

p {
    color: #595959;
    font-size: 14px;
    line-height: 24px;
}

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

.main {
    display: flex;
    flex-direction: row-reverse;
    background-color: white;
    width: 1200px;
    margin: 0 auto;
}

.bold22 {
    font-weight: bold;
    font-size: 22px;
}

.bold14 {
    font-weight: bold;
    font-size: 14px;
}

.white {
    color: white;
}

.main-content {
    background-color: #ffff;
    margin: 80px;
}

.about {}

.projects {}


.work {}

.education {}

.sidebar {
    background-color: #1E2939;
    width: 370px;
}

.sidebar-content {
    padding: 40px;
}

ul {
    padding: 0 15px;
}

li {

    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}

ol {
    padding: 15px;
}

.point ::marker {
    font-size: 1em;
    color: #FB6D3A
}

.number ::marker {
    font-weight: bold;

}

.orang {
    color: #FB6D3A
}

.subtitle {
    color: #A8A8A8;
    font-size: 12px;
}

.mr10{
margin-right: 10px;
}

.lang-switch {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.lang-btn {
    font-family: 'Montserrat', sans-serif;
    background: none;
    border: none;
    cursor: pointer;
    color: #A8A8A8;
    font-size: 13px;
    font-weight: 500;
    padding: 4px 2px;
}

.lang-btn.active {
    color: #FB6D3A;
    font-weight: 700;
}

.lang-sep {
    color: #A8A8A8;
    font-size: 13px;
}

.tag {
    color: #A8A8A8;
    font-size: 12px;
    margin-left: 8px;
}

.npm-packages {
    margin-top: 25px;
}

.npm-packages h3 {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.npm-profile-link {
    color: #FB6D3A;
    font-size: 13px;
    font-weight: 500;
}

.npm-grid {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    padding: 15px 0 0 0;
}

.npm-grid li {
    border-left: 2px solid #FB6D3A;
    padding-left: 12px;
}

.npm-grid a {
    font-weight: 700;
    color: #1E2939;
    font-size: 14px;
}

.npm-grid p {
    margin: 4px 0 0 0;
    font-size: 12px;
    line-height: 18px;
    color: #A8A8A8;
}

@media (max-width: 1240px) {
    .main {
        width: 100%;
        flex-direction: column-reverse;
    }

    .sidebar {
        width: auto;
    }

    .main-content {
        margin: 40px 24px;
    }
}

@media (max-width: 600px) {
    .npm-grid {
        grid-template-columns: 1fr;
    }

    img {
        width: 100%;
        max-width: 280px;
    }
}