h2 {
    text-align: center;
}

ul {
    margin-left: 1rem;
}

.header-underline {
    text-decoration: underline;
}

.header-left {
    text-align: left;
}

.hide {
    display: none;
}

.button-float-left {
    align-self: flex-end;
    /* position: absolute; */
    margin-bottom: 1rem;
    margin-right: -10px;
    z-index: 2;
}

.button-float-left img {
    width: 220px;
}

.background-wrapper {
    background:
        linear-gradient( to right, var(--gradient-color), transparent 20%, transparent 80%, var(--gradient-color) ),
        var(--bg);
    filter: brightness(50%) blur(5px);
    background-position: center;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.profile-column-wrapper {
    position: absolute;
    height: 100%;
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}

.profile-column {
    display: flex;
    width: 40%;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    height: 100%;
    overflow: auto;
}


.profile-column img {
    max-width: 100%;
}

/* Info (left) column */
.info-column {
    align-items: stretch;
    flex-basis: 60%;
}

.reverse .info-column {
    order: 2;
}

.profile-single-image {
    text-align: center;
}

.profile-logo {
    width: 90%;
}

.profile-name {
    width: 70%;
}


.info-block {
    flex-basis: 0;
    flex-grow: 1;
}

.basics {
    flex-basis: 0;
    flex-grow: 1;
}

.basics-list {
    list-style-type: none;
    margin: 0;
}

.likes-and-dislikes {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center;
}

.relation-row {
    display: flex;
    
}

.relation-image {
    height: 280px;
    width: 300px;
}



/* Character image column */

.character-column {
    flex-basis: 30%;
}

.reverse .character-column {
    order: 1;
}

.character-image-wrapper {
    text-align: center;
    flex-grow: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.character-image {
    width: 100%;
}



.button-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.button-image {
    height: 7vh;
}

.button-image-large {
    height: 9vh;
}



@media screen and (max-width: 900px) {
    .button-float-left {
        align-self: center;
        margin-top: 1rem;
    }

    .profile-column-wrapper {
        flex-direction: column;
        height: auto;
        width: 100%;
    }
    .profile-column {
        width: 100%;
    }
    .info-column {
        order: 1;
    }
    .character-column {
        position: relative;
        top: unset;
        height: unset;
    }
    .character-image {
        height: 500px;
    }
}