.header {
    position: sticky;
    padding: 20px 20px 0px;
    display: flex;
    justify-content: center;
}

.header ul {
    display: flex;
    align-items: center;
}



.menu a {
    color: #2B2A44;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 32px;
}


.header li:nth-child(3) a {
    font-size: 24px;
    text-decoration: underline;
    font-weight: 700;

}

.menu a:hover {
    text-decoration: underline;
}

/* 文案 */
#spoken {
    display: flex;

    flex-direction: column;
    align-items: flex-end;
    padding: 34px 20px 40px;

}

#spoken h1 {
    align-self: stretch;
    color: #2B2A44;
    font-family: Helvetica Now Text;
    font-size: 46px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

#spoken h2 {
    color: #2B2A44;
    text-align: right;
    font-family: Helvetica Now Text;
    font-size: 28px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

/* 项目 */
#project {
    position: relative;
    display: flex;
    flex-direction: row;
    row-gap: 60px;
    column-gap: 16px;
    padding: 16px 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

hr {
    position: absolute;
    width: calc(100% - 40px);
    top: 0px;
    border-bottom-style: none;
    border-color: #eee;

}

#project>* {
    flex-basis: calc(50% - 8px);
}

#project a {
    color: #2B2A44;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 8px;

}

#project a .img-skin {
    aspect-ratio: 3/2;
    overflow: hidden;
}

#project a img {
    object-fit: cover;
    width: 100%;
    height: 100%;

}

#project a h3 {
    color: #2B2A44;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
}

#project a p {
    color: rgba(0, 0, 0, 0.40);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 16px;
    /* 157.143% */
}

#project a span {

    padding: 0px 8px;
    border-radius: 30px;
    border: 1px solid #2B2A44;
    color: #2B2A44;
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

#project a {
    overflow: hidden;
}

#project a img {
    transition: transform 0.3s ease-in-out;
}

#project a:hover img {
    transform: scale(1.05);
}

@media (max-width: 800px) {
    .menu a {
        font-size: 12px;
        padding: 16px 12px;
    }

    #spoken h1 {
        font-size: 32px;
    }

    #spoken h2 {
        font-size: 24px;
    }

    #project {
        padding: 12px 12px;
    }

    hr {
        top: 6px;
        width: calc(100% - 24px);
    }

    #project>* {
        flex-basis: initial;
    }
}