#page-bio {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#page-bio p {
    margin-top: 20px;
    margin-bottom: 20px;
}

#page-bio h2 {
    margin-bottom: 30px;
}

#bio-band {
    width: 100%;
    height: 300px;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: top;
}

.bio-container-text {
    margin-top: 30px;
    margin-bottom: 50px;
    max-width: 70%;
}

#bio-container-members {
    display: flex;
    flex-direction: column;
}

.bio-member {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    background-color: aliceblue;
    padding: 1em;
    margin-bottom: 3em;
    color: black;
    margin-left: 15%;
    margin-right: 15%;
}

.bio-member>* {
    flex: 1;
}

.bio-member>img {
    width: 50%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 1em;
}

.bio-member-text {
    margin-left: 1em;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bio-member-text img {
    height: 20px;
}

.bio-member-text p:last-of-type {
    margin-top: auto;
    font-size: 0.85em;
    font-style: italic;
}

@media (max-width: 768px) {
    .bio-member {
        flex-direction: column;
        align-items: center;
        margin-left: 5%;
        margin-right: 5%;
    }

    .bio-member>img {
        width: 100%;
        max-width: 300px;
        height: 400px;
        object-fit: cover;
        object-position: center;
        flex: none;
        margin-bottom: 1em;
    }

    .bio-container-text {
        max-width: 80%;
    }
}