.about-container {
    display: flex;
    padding: 4rem 2rem;


    gap: 4rem;
    align-items: flex-start;
}

.about-image {
    width: 40%;
    
    height: 500px;
    background-image: url('../assets/images/me_pixel.png');
    background-size: cover;
    background-position: center;

    border-radius: 5px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.about-content {
    width: 50%;

}

.about-content h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1rem;

    line-height: 1.8;
    color: #d1d1d1;
    margin-bottom: 1.5rem;
}

.about-content p:last-child {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d1d1;

    max-width: 600px;
}

.about-content .highlight {
    color: #e0e0e0;
    font-weight: 500;
}

.about-content .end-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #2a2a2a;
}

.skills {
    margin-top: 3rem;

}

.skills h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-item {
    padding: 0.5rem 1rem;
    background-color: hsl(169, 85%, 24%);
    border-radius: 20px;
    font-size: 0.9rem;
}

.contact {
    margin-top: 3rem;
}

.contact h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-link {
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #333;
    padding-bottom: 2px;
    font-size: 1rem;
    margin-right: 2rem;
}