.character-sheet {
    h2 {
        margin: 0;
    }

    &__chip {
        display: inline-block;
        padding: 5px;
        margin: 5px;
        box-sizing: border-box;
        background-color: $grey-light;
        border-radius: 10px;
    }

    &__proficiencies {
        display: flex;
        justify-content: space-between;
    }

    &__header {
        display: grid;
        grid-template-columns: 25% 70%;
        grid-column-gap: 5%;
    }

    &__header-image {
        grid-column: span 1;

        img {
            width: 100%;
        }
    }

    &__header-content {
        grid-column: span 1;
    }
}

@media only screen and (max-width: 600px) {
    .character-sheet {
        &__header {
            display: block;
        }

        &__proficiencies {
            display: block;
        }
    }
}
