.top-message {
    font-size: 25pt;
    font-weight: 900;
    letter-spacing: 1.5;
    margin: 0;
}

.top-character-name {
    font-weight: 900;
    color: var(--theme-dark-color);
    text-shadow: 3px 3px 2px #fff, -3px 3px 2px #fff, -3px -3px 0 #fff, 3px -3px 0 #fff;
}

.top-sub {
    font-size: 11pt;
    font-weight: normal;
    display: block;
    letter-spacing: 0;
}

/* ================================ */

@media (min-width:800px) or ((min-width:600px) and (max-width:749px)) {
    .character-container {
        display: grid;
        grid-template-columns: 240px 1fr;
        grid-template-rows: auto auto 160px;
        background-repeat: no-repeat;
        background-size: auto;
        background-position: 100% 100%;
        margin-bottom: 16px;
    }

    .character-container .top-message {
        grid-area: 1 / 1 / 2 / 3;
        margin-bottom: 16px;
    }

    .character-container .character-quote {
        grid-area: 2 / 1 / 3 / 3;
        margin-bottom: 1em;
    }

    .character-container .character-data {
        grid-area: 3 / 1 / 4 / 2;
    }

    .character-container .character-image {
        grid-area: 1 / 1 / 4 / 3;
        display: none;
    }


}

@media ((min-width:750px) and (max-width:799px)) or (max-width:599px) {
    .character-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        margin-bottom: 1em;
        background: none !important;
    }

    .character-container .top-message {
        grid-area: 1 / 1 / 2 / 2;
        margin-bottom: 1em;
    }

    .character-container .character-quote {
        grid-area: 2 / 1 / 3 / 2;
    }

    .character-container .character-image {
        grid-area: 3 / 1 / 4 / 2;
        margin: 1em 0;
    }

    .character-container .character-data {
        grid-area: 4 / 1 / 5 / 2;
    }


}

/* ================================ */

.character-links {
    display: flex;
    justify-content: space-between;
    font-size: 12pt;
    list-style: none;
    margin: 0 0 1em 0;
    padding: 0;
}

.character-quote {
    font-weight: 900;
    font-size: 18pt;
    text-shadow: 2px 2px 2px #fff, -2px 2px 2px #fff, -2px -2px 0 #fff, 2px -2px 0 #fff;
    transform: rotate(-5deg);
    color: var(--theme-dark-color);
    align-content: center;
    width: max-content;
    max-width: 100%;
}

.character-image {
    position: relative;
    text-align: center;
}

.character-image img {
    position: relative;
}

.character-data-sheet {
    background: white;
    padding: 5px 8px;

    border-spacing: 3px 0;
}

.character-data-sheet th {
    text-align: right;
    font-size: 10pt;
}

.character-data-sheet td {
    font-size: 13pt;
}

.color-block {
    display: inline-block;
    position: relative;
    bottom: -2px;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
}