* {
    font-family: 'Manrope', sans-serif;
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #140E17;
    padding: 64px 20px 220px 20px;
}

h1,
h2,
h3,
p {
    margin: 0;
}

h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 0px;
    text-transform: lowercase;
    color: #F5FA93;
}

.mt-64 {
    margin: 64px auto 0 auto;
}

.main-border {
    border: 1px solid #333333;
    border-radius: 32px;
}

.button-border {
    border: 1px solid #333333;
    border-radius: 18px;
}

.container {
    max-width: 1000px;
    width: 100%;
}

.about-me {
    display: flex;
    align-items: center;
    gap: 112px;
}

.my-photo {
    max-width: 400px;
    width: 100%;
}

.description {
    display: flex;
    flex-direction: column;
    gap: 22px;
    color: #FFFFFF;
}

.my-name {
    font-weight: 800;
    font-size: 68px;
    line-height: 110.00000000000001%;
}

.short-description {
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 28px;
}

.write-action {
    margin-top: 42px;
    display: flex;
    gap: 8px;
    background: #F5FA93;
    max-width: 232px;
    width: 100%;
    padding: 18px 14px;
    text-align: center;
    text-decoration: none;
    color: black;
    font-weight: 600;
    font-size: 18px;
}

.button-label {
    margin: auto;
    align-items: center;
}

.socials h3 {
    padding-left: 24px;
}

.socials-links {
    margin: 32px 0 0 0;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.link-button {
    padding: 8px 14px;
    display: flex;
    gap: 8px;
    align-items: center;
    color: white;
    text-decoration: none;
    max-width: 232px;
    width: 100%;
}

.social-name {
    margin: auto;
}

.social-name .bold {
    font-weight: 700;
}

.bio {
    color: white;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.bio p {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
}

.work-experience {
    color: white;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.job-history-company {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
}

.job-history-period {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #76757B;
}

.job-history-link a {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #76757B;
}

.job-history .job-history-position {
    margin-top: 8px;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}

.portfolio {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.portfolio h3 {
    padding-left: 24px;
}

.portfolio .items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.portfolio .items .item {
    display: flex;
    color: #000000;
    background: #F5FA93;
    align-items: center;
    gap: 48px;
    border-radius: 24px;
    padding: 32px;
}

.project {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 628px;
    width: 100%;
}

.project .project-name {
    font-weight: 700;
    font-size: 42px;
    line-height: 54px;
}

.project .project-description {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    direction: ltr;
    text-align-last: start;
}

.show-project a {
    display: flex;
    gap: 8px;
    margin-left: auto;
    max-width: 180px;
    width: 100%;
    max-height: 61px;
    height: 100%;
    padding: 18px 14px;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    text-decoration: none;
    color: #000000;
}

@media screen and (max-width: 768px) {
    .about-me {
        gap: 52px;
    }

    .short-description {
        max-width: 352px;
    }

    .link-button {
        max-width: 352px;
        width: 100%;
        flex: 1 1 230px;
    }

    .project-photo {
        max-width: 260px;
        flex-basis: 260px;
    }
    
    .project-photo img {
        width: 100%;
    }

    .project {
        flex: 1;
    }
}

@media screen and (max-width: 480px) {
    .about-me {
        flex-direction: column;
    }

    .link-button {
        flex-basis: 150px;
    }

    .portfolio .items .item {
        flex-direction: column;
        gap: 24px;
    }

    .project-photo {
        flex-basis: auto;
    }

    .hidden-480 {
        display: none;
    }
}