.characters {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.character, .right-pane {
    padding: 16px;
    background-color: #155050d0;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    box-shadow: 0 0 5px #25b6b6;
}

.character {
    min-width: 300px;
}

.image-cover img{
    height: auto;
    width: auto;
    max-width: 200px;
    border-radius: 100vmax;
}

.character .text{
    display: flex;
    gap: 8px;
    flex-direction: column;
    max-width: 1200px;
}

.character .name{
    font-size: 24px;
}

.character img {
    width:min(500px, 100%);
}

.info-tab {
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 80ch;
}

.about {
    gap: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* grid-template-columns: auto 1fr; */
    /* width: fit-content; */
}

.about> :nth-child(odd){
	font-weight: 700;
    text-align: right;
}

.about> :nth-child(even){
    text-align: left;
}

@media only screen and (max-width: 750px){
    iframe[id=music-theme] {
        width:100%;
        aspect-ratio:16/9;
        object-fit:cover;
        display:block;
    }

    .character {
        display: grid;
        text-align: center;
    }
}

ul {
    padding-left: 1em; /* Space for bullets */
    margin: 0; /* Removes default margin */
}

.character .image-cover img {
    width:150px;
}

article.article-content {
    gap: 12px;
    align-items: start;
}

.right-pane {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    max-width: 80ch;
}

.right-pane > img {
    width: 150px;
    height: 150px;
    border-radius: 100vmax;
}

.centered {
    display: flex;
    align-items: center;
    flex-direction: column;
}

@media only screen and (max-width: 750px) {
    article.article-content {
        flex-direction: column-reverse;
        align-items: center;
    }

    .right-pane {
        width: 100%;
        width: -webkit-fill-available;
        width: -moz-available;
    }

    .right-pane, .character {
        box-shadow: unset;
    }
/* 
    .about {
        width: unset;
    } */
}