.header {
    display: flex;
    padding: 10px 120px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
}

.header-right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.home {
    display: flex;
    height: auto;
    padding: 120px 120px 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    align-self: stretch;
}

.intro {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: center;
}

.intro-item {
    flex: 1;
}

.intro-img-container {
    height: 400px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-top: 30px;
}

.intro-img-container img {
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
}

.intro-img-container img:hover {
    transform: scale(1.05);
}

.project-img-container {
    flex: 1 1 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 30px 30px 0 0;
    min-height: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin-bottom: 0;
}

.project-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.container {
    display: flex;
    width: 300vw;
    position: relative;
    /*left: -120px;*/
    flex-direction: row;
}

.container section {
    width: 50vw;
    flex-shrink: 0;
    position: relative;
}

section {
    height: 100vh;
}

.projects {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

.project-card {
    height: calc(100vh - 120px);
    margin-left: 120px;
    border-radius: 30px;
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    align-self: stretch;
}

.project-description {
    padding: 30px;
}

.role-tags {
    display: flex;
    align-items: center;
    gap: 50px;
}

.project-tags {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.about {
    display: flex;
    margin-top: 100px;
    padding: 50px 120px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    align-self: stretch;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: var(--border-radius);
    padding: 0 30px;
}

.skills {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 20px;
    align-self: stretch;
    flex-wrap: wrap;
    margin: 20px 120px;
    padding: 30px;
}

.contact {
    display: flex;
    padding: 50px 120px 100px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.about-filled {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expand-design-style-btn {
    font: inherit;
    padding: 14px 26px;
    font-weight: 500;
    border-radius: var(--border-radius);
    font-size: 22px;
    cursor: pointer;
    border: none;
    box-shadow: none;
    appearance: none;
}

.contact-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-method {
    height: 60px;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: var(--light);
    font-size: 18px;
    font-weight: 500;
}

.icon-only {
    width: 60px;
}
.contact-icon {
    width: 30px;
    height: 30px;
    object-fit: cover;
    display: block;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 120px;
    font-size: 18px;
    font-weight: 500;
}

.sub-header {
    padding: 50px 0 30px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.email {
    padding: 10px;
}

.email-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.contact-method-2 {
    display: flex;
    flex-direction: row;
    gap: 30px;
}