#bio {
    width: 100%;
    background: linear-gradient(var(--background), rgba(0, 0, 0, 0), var(--background)), url(/media/img/bio-pic.png) no-repeat top/cover;
}
.bio-content {
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 2em;
    color: var(--text);
}
.bio-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: min(400px, 100%);
    gap: 1em;
}

.bio-text h1 {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp .6s ease forwards;
}
.bio-text h2 {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp .6s ease forwards;
}
.bio-text p {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.bio-text p.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}