#about {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    width: 100dvw;
    min-height: calc(100dvh - var(--navbar-height));
    gap: 5rem;
    padding: 5rem 2rem;
}

#about-image-wrapper {
    position: relative;
}
#about-image-wrapper > a {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    translate: -50% 0;
}
#about-image-wrapper:hover > a {
    bottom: 3rem;
    box-shadow: 0 0 0.1rem 0.2rem gray;
}

#about-image {
    width: 30rem;
    max-width: 80dvw;
    border-radius: 2rem;
}

#about-content {
    max-width: 40em;
}

#about-content .skills-list {
    margin-top: 0.2em;
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}

#about-content .skills-list .skill-item {
    background-color: white;
    padding: 0.5em;
    border-radius: 0.5em;
    height: 3em;
}

@media (max-width: 700px) {
    #about-content {
        font-size: var(--small-font-size);
    }
}

@media (max-width: 490px) {
    #about-content, #skills-list .skill-item {
        font-size: var(--tiny-font-size);
    }
}
