.character-section
{
    background-color: #FEFBF1;
    text-align: center;
    padding: 10vmin 1vmin;
}

.character-section h2
{
    font-size: 4vmin;
}

.characters
{
    padding-bottom: 5vmin;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3vmin;
}

.character
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 0 1 5vmin;
}

.character img
{
    width: 100%;
    max-width:30vmin;
    height: auto;
}

.character h3
{
    font-size: 2.5vmin;
    width: 35vmin;
}

#flip
{
    transform: rotateY(180deg);
}