* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 100vh;
}

.hero-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 0.8fr 1.4fr 0.8fr;
}

.grid-row {
    width: 100%;
    position: relative;
}

.grid-row.top,
.grid-row.bottom {
    background-color: #2A2A2A;
}

.grid-row.middle {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.grid-row.middle .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    z-index: 1;
}

.about-row.bottom {
    position: relative;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-header {
    position: relative;
    z-index: 2;
}

/* Update mobile responsiveness */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-rows: 0.8fr 1.4fr 0.8fr;
    }

    .story-content,
    .skills-content {
        max-width: 80%;
        font-size: 1.2rem;
    }

    .lightbox-content {
        width: 95%;
        height: 95vh;
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .lightbox-image {
        max-height: 40vh;
        object-fit: contain;
    }

    .project-details {
        padding: 0;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "small1"
            "large1"
            "large2";
        gap: 2rem;
    }

    .bento-item {
        aspect-ratio: 16/9;
        width: 100% !important;
        height: auto !important;
        max-width: none !important;
    }
}

@media (max-width: 768px) {
    .hero-text {
        font-size: 18vw;
    }

    .story-content,
    .skills-content {
        max-width: 90%;
        font-size: 1.1rem;
    }

    .nav-btn {
        font-size: 1.8rem;
    }

    .about-header {
        font-size: 14vw;
    }

    .work-header {
        font-size: 10vw;
    }
}

@media (max-width: 480px) {
    .hero-grid {
        grid-template-rows: 0.7fr 1.6fr 0.7fr;
    }

    .hero-text {
        font-size: 16vw;
    }

    .story-content,
    .skills-content {
        font-size: 1rem;
    }

    .nav-btn {
        font-size: 1.5rem;
    }

    .project-title {
        font-size: 1.8rem;
    }

    .project-description {
        font-size: 1rem;
    }
}
/* Hero Text Styling */
.hero-text {
    font-size: 16vw;
    font-weight: 900;
    color: white;
    position: absolute;
    z-index: 2;
    bottom: 0;
    padding-left: 5vw;
    line-height: 0.8;
    animation: slideInText 1.5s cubic-bezier(0.25, 0.1, 0.25, 1.5) forwards;
    opacity: 0;
}

.grid-row.top .hero-text {
    animation-delay: 0.2s;
}

.grid-row.middle .hero-text {
    animation-delay: 0.4s;
    color: #2A2A2A;
}

.grid-row.bottom .hero-text {
    animation-delay: 0.6s;
}

/* About Section */
.about {
    width: 100%;
    min-height: 100vh;
    display: block;
}

.about-grid {
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-rows: 2fr 1fr;
}

.about-row {
    width: 100%;
    position: relative;
    min-height: 40vh;
}

.about-row.top {
    background-color: #2A2A2A;
    position: relative;
    overflow: hidden;
}

.about-nav {
    position: absolute;
    right: 5vw;
    top: 50%;
    transform: translateY(-50%);
    list-style: none;
}

.nav-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-btn:hover {
    color: #999;
}

.story-content,
.skills-content {
    position: absolute;
    left: 5vw;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 1.5rem;
    max-width: 60%;
    opacity: 0;
    display: none;
    transform: translateX(-100%);
}

.story-content.active,
.skills-content.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.skills-list {
    list-style: none;
    padding: 0;
}

.skills-list li {
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    margin: 1rem 0;
}

.skills-list.active li {
    opacity: 1;
    transform: translateX(0);
}

.skills-list.active li:nth-child(1) { transition-delay: 0.1s; }
.skills-list.active li:nth-child(2) { transition-delay: 0.2s; }
.skills-list.active li:nth-child(3) { transition-delay: 0.3s; }
.skills-list.active li:nth-child(4) { transition-delay: 0.4s; }
.skills-list.active li:nth-child(5) { transition-delay: 0.5s; }

.about-header {
    font-size: 12vw;
    font-weight: 900;
    color: #2A2A2A;
    padding-left: 5vw;
    margin-top: 0;
    line-height: 1;
}

/* Animations */
@keyframes slideInText {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    60% {
        opacity: 1;
        transform: translateX(2vw);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutText {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    40% {
        opacity: 1;
        transform: translateX(2vw);
    }
    100% {
        opacity: 0;
        transform: translateX(-100%);
    }
} 

/* Work Section - Bento Grid */
.work {
    width: 100%;
    min-height: 100vh;
    padding: 8rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #2A2A2A;
    position: relative;
    overflow: hidden;
}

.work-header {
    position: absolute;
    bottom: 2rem;
    right: 5vw;
    font-size: 8vw; /* Reduced from 10vw */
    font-weight: 900;
    color: white;
    opacity: 0.1;
    line-height: 1;
}

.bento-grid {
    width: 100%;
    max-width: 1800px;
    height: auto;
    aspect-ratio: 1800/900;
    display: grid;
    grid-template-columns: minmax(200px, 400px) minmax(300px, 600px);
    grid-auto-flow: dense;
    grid-template-areas: 
        "small1 large1"
        "large2 small2";
    grid-template-rows: repeat(2, 1fr);
    gap: clamp(1rem, 3vw, 3rem);
    justify-content: center;
    position: relative;
}

.bento-item {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Desktop Layout */
.bento-item:nth-child(1) {
    grid-area: small1;
    aspect-ratio: 1/1;
    width: 400px;
    height: 400px;
}

.bento-item:nth-child(2) {
    grid-area: large1;
    aspect-ratio: 1.5/1;
    width: 600px;
    height: 400px;
}

.bento-item:nth-child(3) {
    grid-area: large2;
    aspect-ratio: 1.5/1;
    width: 600px;
    height: 400px;
    display: flex;
}

.bento-item:nth-child(4) {
    grid-area: small2;
    aspect-ratio: 1/1;
    width: 400px;
    height: 400px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Container for bottom row to handle positioning */
.bento-grid::after {
    content: '';
    grid-area: large2;
    position: relative;
    width: 100%;
    height: 100%;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px) brightness(0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1400px;
    height: 90vh;
    background: white;
    padding: 2rem;
    border-radius: 4px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
    cursor: default;
}

.lightbox.active .lightbox-content {
    opacity: 1;
    transform: scale(1);
}

.lightbox-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.project-details {
    padding: 1rem;
    overflow-y: auto;
    max-height: 100%;
}

.project-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2A2A2A;
}

.project-description {
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.project-tech {
    margin-bottom: 2rem;
}

.tech-list {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

.tech-list li {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 1rem;
} 

/* Contact Section */
.contact-section {
    width: 100%;
    min-height: 100vh;
    padding: 8rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.contact-header {
    font-size: 12vw;
    font-weight: 900;
    color: #2A2A2A;
    margin-bottom: 4rem;
    line-height: 1;
    text-align: center;
    max-width: 90%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 6rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
}

.contact-item i {
    font-size: 2.5rem;
    color: #2A2A2A;
}

.contact-item a {
    color: #2A2A2A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #404040;
}

.social-links {
    display: flex;
    gap: 4rem;
    margin-top: 4rem;
    padding: 2rem;
}

.social-link {
    color: #2A2A2A;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    transform: translateY(-5px);
    color: #404040;
}

.social-link i {
    font-size: 3.5rem;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
} 

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .work {
        padding: 4rem 2rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "small1"
            "large1"
            "large2"
            "small2";
        gap: 2rem;
        aspect-ratio: unset;
        height: auto;
    }

    .bento-item {
        width: 100%;
        height: auto;
        position: static !important; /* Override absolute positioning on mobile */
        transform: none !important;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 450px;
        margin: 0 auto;
        aspect-ratio: 1.5/1;
        width: 100%;
        height: auto;
    }

    /* Remove the pseudo-element on mobile */
    .bento-grid::after {
        display: none;
    }

    .work-header {
        font-size: 12vw; /* Reduced from 14vw */
    }

    .contact-header,
    .about-header,
    .work-header {
        font-size: 16vw;
    }

    .contact-info {
        padding: 0 2rem;
    }

    .contact-item {
        font-size: 1.5rem;
    }

    .social-link i {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-text {
        font-size: 20vw;
    }

    .contact-item {
        font-size: 1.2rem;
    }

    .contact-item i {
        font-size: 2rem;
    }

    .social-links {
        gap: 2rem;
    }

    .work {
        padding: 3rem 1rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 420px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4) {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .contact-header,
    .about-header,
    .work-header {
        font-size: 20vw;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-link i {
        font-size: 2rem;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-