body {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-color: #160A0A;
}

div {
    border: 1px solid transparent;
}

.centerer {
    display: flex;
    justify-content: center;
}

.container {
    margin: 25px;
    display: grid;
    gap: 25px;
    grid-template-columns: 3fr 5fr;
    height: 85vh;
    max-width: 90vw;

    /*border: 2px solid blue;*/
}

.picture {
    border: 4px solid #60D5F7;
    background-color: #364056;
    padding: 10px;
    position: relative;

    /*Change the background image according to the character!*/
    background-image: url("/characters/kobuyi/main-img-placeholder.jpg");
    background-repeat: no-repeat;
    background-size: cover;

    /*You might have to change the position, depending on the character art*/
    background-position: center;
}

.character-name {
    /*Another highly customizable field. You could change the font, size, and positioning*/
    position: absolute;
    bottom: 0;
    left: 10px;
    font-size: x-large;
    color: #c2ebf8;
}

.nav-links {
    /*Change this depending on the character*/
    background-color: #60D5F7;
}

.content {
    text-align: center;
    overflow-y: hidden;

    display: flex;
    flex-direction: column;

    /*Could change this based on the character too*/
    border: 4px solid #60D5F7;
    background-color: #364056;
}

.content > iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 600px){
    .container {
        margin: 25px;
        display: grid;
        gap: 15px;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 3fr;
    }

    .picture  {
        background-size: 65%;
        background-position: right center;
    }
}