* {
    box-sizing: border-box;
}

:root {
    
    color-scheme: dark;

    --header-font-family: Rowdies, Verdana, sans-serif;
    --main-font-family: Montserrat, Verdana, sans-serif;
    --monospace-font-family: Courier, monospace;

    --main-font-size: 1rem;
    --small-font-size: .9em;
    --large-icon-size: 1.7rem;
    --small-icon-size: 1.2rem;
    --round-edge: 6px;

    --font-color: rgb(240, 241, 246);
    --body-bg: rgb(28, 27, 34);

    --tp-light: rgba(45, 45, 54, 0.555);
    --tp-medium: rgba(12, 12, 15, 0.473);
    --tp-dark: rgba(4, 4, 5, 0.336);
    --tp-black: rgba(0, 0, 0, 0.479);

    --red-solid: rgb(226, 89, 112);
    --red-tp: rgba(211, 81, 103, 0.247);
    --green-solid: rgb(165, 204, 133);
    --green-tp: rgb(165, 204, 133, 0.247);
    --blue-tp: rgba(124, 138, 218, 0.301);
    --yellow-solid: rgb(250, 226, 148);
    --yellow-tp: rgb(250, 226, 148, 0.247);
    --grey-light: rgb(231, 231, 248);
    --grey-medium: rgb(191, 191, 202);
    --grey-dark: rgb(64, 64, 77);
    --grey-black: rgb(20, 19, 24);
    --grey-blackest: rgb(15, 14, 18);

}

/* ----- CONTENT ----- */

body {
    background: var(--body-bg);
    color: var(--font-color);
    font-family: var(--main-font-family); 
    position: relative;
    margin: 0 auto;
}

header {
    background: transparent;
    color: var(--font-color);
    padding: 2em 1em 1em 2em;
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    width: 5%;
    z-index: 2;
}

@media screen and (max-width: 1250px) {
    header {
        background: var(--grey-black);
        box-shadow: 0em 0.5em var(--grey-blackest);
        padding: 1em 1em 1em 1em;
        top: 0;
        width: 100%;
        z-index: 2;
    }
}

section {
    /* background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(); */
    background: var(--body-bg);
    color: var(--font-color);
    font-size: var(--main-font-size);
    height: 100vh;
    width: 100vw;
    display: none;
    position: absolute;
    scrollbar-gutter: stable;
    overflow-x: hidden;
}

section:target {
    display: block;
}

section#index {
    display: block;
}

.wp {
    background: var(--body-bg);
    background-image: url(https://crushing.neocities.org/assets/skz/skz-bg.jpg);
}

#changbin {
    background: linear-gradient(to bottom, var(--grey-black) 50%, #5c5c74 100%);
}

#changbin-ext {
    background: linear-gradient(to bottom, var(--grey-black) 10%, #4e4e63 50%, #a1a1bb 100%);
}

#dwaekki {
    color: var(--body-bg);
    background-image: 
        radial-gradient(circle farthest-corner at 10% 20%, 
        rgb(250, 239, 255) 0%, 
        rgb(225, 231, 255) 21.9%, 
        rgb(225, 255, 234) 35.6%, 
        rgb(250, 255, 216) 53.9%, 
        rgb(255, 244, 227) 66.8%, 
        rgb(255, 232, 231) 95%, 
        rgb(255, 223, 239) 99.9% );
}

.container {
    background: transparent;
    line-height: 1.5em;
    max-width: 65em;
    margin: auto;
    margin-bottom: 5em;
    padding: 3em 4em .1em 4em;
    border-radius: 0 0 var(--round-edge) var(--round-edge);
}

.box {
    background: var(--grey-black);
    box-shadow: 0.5em 0.5em var(--grey-blackest);
    border: 4px solid transparent;
    border-radius: var(--round-edge);
    padding: 1em 2.5em 1em 2.5em;
    margin: 0em .3em 4em 0em;
}

.box-clear {
    background: transparent;
    border: 1px solid var(--font-color);
    border-radius: var(--round-edge);
    padding: 1em 2.5em 1em 2.5em;
    margin: 0em .3em 2em 0em;
}

.centered {
    text-align: center;
}

@media screen and (max-width: 560px) {
    .box,
    .box-clear {
        padding: .1em 1em .1em 1em;
    }
    h3 {
        margin-right: .25em;
    }
}

@media screen and (max-width: 1249px) {
    .container { padding: 7em 1em 3em 1em; }
}

/* ----- GENERAL ----- */

h1, h2, h3, h4, h5 {
    font-family: var(--header-font-family);
    font-weight: 500;
    line-height: 1.5em;
}
h1 { 
    font-size: 1.7rem;
}
h1 a,
h1 a:hover {
    color: var(--font-color);
    border-bottom: 0;
}
h2 { 
    font-size: 1.4rem;
}
h3 {
    font-size: 1.3rem;
    text-align: center;
    background: var(--grey-black);
    box-shadow: 0.4em 0.2em var(--grey-blackest);
    margin-top: 2em;
    margin-bottom: -10px;
    padding: .6em 1em .9em 1.2em;
    border-radius: var(--round-edge) var(--round-edge) 0 0;
    width: fit-content;
}

h4 { 
    font-size: 1.2rem;
    margin: 16px 0px 16px 0px;
}
h5 { 
    font-size: 1.1rem;
    margin: 16px 0px 16px 0px;
}

.pubDate {
    font-style: italic;
}

sup {
    vertical-align: top;
    font-size: .7rem;
}
sub {
    line-height: .1em;
}

hr {
    border: 0;
    height: 2px;
    width: 100%;
    background: var(--grey-blackest);
    background-image: linear-gradient(to right, var(--font-color), rgba(0, 0, 0, 0));
    margin-bottom: 10px;
}
hr.solid {
    margin: 3em 0em 3em 0em;
    background: var(--grey-dark);
}
hr.fade {
    border: 0;
    height: 1px;
    width: 100%;
    background: var(--body-bg);
    background-image: linear-gradient(to right, var(--font-color), var(--body-bg));
    margin-bottom: 20px;
    margin-left: 0;
}
hr.weak {
    margin: 1em 0em 1em 0em;
    background: var(--grey-dark);
}
hr.dashed {
    border: 1px dashed var(--grey-dark);
}

code {
    font-family: var(--monospace-font-family);
    font-size: var(--main-font-size);
    background: var(--tp-black);
    border-radius: var(--round-edge);
    padding: .1em .2em .1em .2em;
    overflow-wrap: break-word;
}

mark {
    background-image: linear-gradient(to right, var(--font-color), var(--grey-black));
    /* box-shadow: 0 0 .2em .2em var(--font-color); */
    color: var(--grey-black);
    border-radius: var(--round-edge);
    padding: .2em 1.5em .2em .2em;
    /* font-weight: bold; */
    /* margin-left: -.2em; */
    /* background: transparent; */
    /* text-shadow:
        0 0 7px var(--font-color),
        0 0 10px var(--font-color),
        0 0 21px var(--font-color),
        0 0 42px #fff,
        0 0 82px #fff,
        0 0 92px #fff,
        0 0 102px #fff,
        0 0 151px #fff; */
}
mark a {
    background: transparent;
    color: var(--grey-black);
    text-decoration: none;
}
mark a:hover {
    color: var(--grey-dark);
}
.yellow-mark {
    background-image: linear-gradient(to right, #F1C338, var(--grey-black));
}

.tag-line {
    color: var(--grey-light);
    border-bottom: 2px dotted var(--grey-light);
}

.open {
    color: var(--green-solid);
    text-transform: uppercase;
}
.closed {
    color: var(--red-solid);
    text-transform: uppercase;
}

blockquote {
    padding-left: 1.5em;
    margin: 16px 0px 16px 0px;
}

#audio {
    cursor: pointer;
    font-size: .5em;
}

dt {
    font-weight: 600;
}
dd {
    margin-bottom: 1em;
}

ul {
    padding-left: 1.5em;
}
li {
    list-style-type: none;
}
ol li {
    list-style-type: decimal;
}
.bulleted li:before {
    content: '¦ ';
    padding-right: .3em;
    padding-left: .5em;
}
.li-unchecked li {
    padding: .3em 0em .3em 0em;
    list-style-type: '☐   ';
    margin-left: 2em;
}
.li-checked li { 
    padding: .3em 0em .3em 0em;
    list-style-type: '☑   ';
    margin-left: 2em;
}

@media screen and (max-width: 750px) {
    .bulleted ul,
    .moved ul {
        padding-left: 1em;
    }
    blockquote { margin-left: 0em; width: 90%; }
    ul { padding-left: 0em; }
    ol { padding-left: 1em; }
}

/* ----- TITLE-TOOLTIPS ----- */

[data-title]:hover:after {
    opacity: 1;
    visibility: visible;
}

[data-title]:after {
    color: var(--font-color);
    background: var(--grey-black);
    border: var(--font-color) 1px solid;
    content: attr(data-title);
    position: absolute;
    white-space: nowrap;
    z-index: 99999;
    bottom: 1.6em;
    left: 0%;
    padding: .2em .4em .2em .4em;
    opacity: 0;
    visibility: hidden;
}

[data-title] {
    position: relative;
    border-bottom: var(--font-color) 1px solid;
    cursor: pointer;
}

/* ----- LINKS ----- */

u {
    text-decoration-thickness: 0.15em;
    text-underline-offset: 0.25em;
}

a {
    color: var(--font-color);
    background:
    linear-gradient(
        to bottom,
        var(--font-color) 0%,
        var(--font-color) 100%
    );
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 2px 2px;
    text-decoration: none;
    transition: all 0.2s;
}
a:hover {
    color: var(--body-bg);
    background-size: 2px 50px;
}
a.img-link {
    background: transparent;
    border-bottom: 0;
    text-decoration: none;
}
a.img-link:hover {
    color: var(--grey-medium);
}

@media only screen and (min-width: 100px) {
    .quote {
        text-align: center;
        width: 70%;
        margin: auto;
        padding: .3em .1em .3em .1em;
    }
    .quote a {
        white-space: nowrap;
    }
    .callout {
        border-radius: var(--round-edge);
        padding: .5em 2em .5em 2em;
        margin: 1em 0em 1em 0em;
    }
    .red-bg { background: var(--red-tp); }
    .yellow-bg { background: var(--yellow-tp); }
    .green-bg { background: var(--green-tp); }
    .blue-bg { background: var(--blue-tp); }
    .grey-bg { background: var(--grey-blackest); }
}

@media screen and (max-width: 750px) {
    .quote {
        width: 100%;
        padding: .1em .1em .1em .1em;
    }
    .callout {
        padding: .1em 1em .1em 1em;
        margin: 1.2em .2em 1.2em .2em;
    }
}

.inverted {
    filter: invert(.9) saturate(0.5) hue-rotate(155deg);
}

/* ----- PLAYLIST ----- */

.short-list {
    background: var(--tp-dark);
    font-size: var(--small-font-size);
    text-align: left;
    line-height: 1.5em;
    border-radius: 0 0 var(--round-edge) var(--round-edge);
}
.short-list a {
    background: transparent;
    color: var(--grey-medium);
    text-decoration: none;
}
.short-list a:hover {
    cursor: pointer;
    color: var(--grey-light);
}
.short-list li {
    padding: .5em 1em .5em 1em;
}
.short-list li:nth-child(even) {
    background: var(--tp-dark);
}
.short-list li:last-child {
    border-radius: 0 0 var(--round-edge) var(--round-edge);
}

input,
button {
    outline: none;
}

.flex {
    display: -webkit-flex;
    display: flex;
}
.flex-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex-align {
    -webkit-align-items: center;
    align-items: center;
}

.w-full {
    width: 100%;
}

.simple-audio-player {
    border: 1px solid var(--font-color);
}
#simp button,
#simp input,
#simp img {
    border: 0;
}
#simp {
    color: var(--font-color);
    text-align: initial;
    line-height: initial;
    margin: 0 auto;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 2em;
}
#simp .simp-album {
    padding: 20px 25px 5px;
}
#simp .simp-album .simp-cover {
    margin-right: 20px;
}
#simp .simp-album .simp-cover img {
    max-width: 80px;
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}
#simp .simp-album .simp-title {
    font-size: 120%;
    font-weight: bold;
}
#simp .simp-album .simp-artist {
    color: var(--grey-light);
    font-size: 90%;
    opacity: .6;
}
#simp .simp-controls {
    padding: 15px;
}
#simp .simp-controls button {
    font-size: 130%;
    width: 32px;
    height: 32px;
    background: none;
    color: var(--font-color);
    margin: .2em;
    cursor: pointer;
    border: 0;
    border-radius: 3px;
}
#simp .simp-controls button[disabled] {
    color: var(--red-tp);
    cursor: initial;
}
#simp .simp-controls button:not([disabled]):hover {
    background: var(--font-color);
    color: var(--grey-black);
}
#simp .simp-controls .simp-prev,
#simp .simp-controls .simp-next {
    font-size: 100%;
}
#simp .simp-controls .simp-tracker,
#simp .simp-controls .simp-volume {
    flex: 1;
    margin-left: 10px;
    position: relative;
}
#simp .simp-controls .simp-buffer {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 5px;
    margin-top: -2.5px;
    border-radius: 100px;
}
#simp .simp-controls .simp-loading .simp-buffer {
    -webkit-animation: audio-progress 1s linear infinite;
    animation: audio-progress 1s linear infinite;
    background-image: linear-gradient(-45deg, var(--grey-black) 25%, transparent 25%, transparent 50%, var(--grey-black) 50%, var(--grey-black) 75%, transparent 75%, transparent);
    background-repeat: repeat-x;
    background-size: 25px 25px;
    color: transparent;
}
#simp .simp-controls .simp-time,
#simp .simp-controls .simp-others {
    margin-left: 10px;
}
#simp .simp-controls .simp-volume {
    max-width: 150px;
}
#simp .simp-controls .simp-volume .simp-mute {
    margin-right: 5px;
}
#simp .simp-controls .simp-others .simp-active {
    background: var(--red-solid);
}
#simp .simp-controls .simp-others .simp-shide button {
    font-size: 100%;
    padding: 0;
    width: 24px;
    height: 14px;
    display: block;
}
#simp .simp-controls input[type=range] {
    background: transparent;
    height: 19px;
    margin: 0;
    width: 100%;
    display: block;
    position: relative;
}
#simp .simp-controls input[type=range]::-webkit-slider-runnable-track {
    background: var(--red-tp);
    height: 5px;
    border-radius: 2.5px;
    transition: box-shadow .3s ease;
    position: relative;
}
#simp .simp-controls input[type=range]::-moz-range-track {
    background: var(--red-tp);
    height: 5px;
    border-radius: 2.5px;
    transition: box-shadow .3s ease;
    position: relative;
}
#simp .simp-controls .simp-load .simp-progress::-webkit-slider-runnable-track {
    background: var(--grey-dark);
}
#simp .simp-controls .simp-load .simp-progress::-moz-range-track {
    background: var(--grey-dark);
}
#simp .simp-controls .simp-loading .simp-progress::-webkit-slider-runnable-track {
    background: var(--tp-medium);
}
#simp .simp-controls .simp-loading .simp-progress::-moz-range-track {
    background: var(--tp-medium);
}
#simp .simp-controls input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: var(--grey-light);
    height: 13px;
    width: 13px;
    margin-top: -4px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .15), 0 0 0 1px rgba(47, 52, 61, .2);
}
#simp .simp-controls input[type=range]::-moz-range-thumb {
    background: var(--grey-light);
    height: 13px;
    width: 13px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .15), 0 0 0 1px rgba(47, 52, 61, .2);
}
#simp .simp-footer {
    padding: 10px 10px 12px;
    font-size: 90%;
    text-align: center;
    opacity: .7;
}
#simp .simp-display {
    overflow: hidden;
    max-height: 650px;
    transition: max-height .5s ease-in-out;
}
#simp .simp-hide {
    max-height: 0;
}
#simp ul {
    max-height: 455px;
    margin: 5px 0 0;
    padding: 0;
    list-style: none;
}
#simp ul li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    margin: 0;
    padding: 8px 20px;
    cursor: pointer;
}
#simp ul li:nth-child(even) {
    background: var(--tp-dark);
}
#simp ul li:nth-child(odd) {
    background: var(--tp-black);
}
#simp ul li:hover {
    background: var(--red-solid);
}
#simp ul li.simp-active {
    background: var(--red-solid);
}
#simp ul li .simp-desc {
    color: var(--grey-light);
    font-size: 90%;
    opacity: .6;
    margin-left: 5px;
}
.simp-random {
    display: none;
}

/* ----- SCROLLBAR ----- */

#simp ul {
    max-height: 100%;
    scrollbar-width: thin;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-color: var(--grey-dark) #ffffff00;
}

#simp ul::-webkit-scrollbar-track {
    background-color: var(--grey-dark);
}

#simp ul::-webkit-scrollbar {
    width: 6px;
    background-color: var(--grey-dark);
}

#simp ul::-webkit-scrollbar-thumb {
    background-color: var(--grey-medium);
}

/* ----- PROGRESS-ANIMATION ----- */

@-webkit-keyframes audio-progress {
    to {
        background-position: 25px 0;
        }
    }

@keyframes audio-progress {
    to {
        background-position: 25px 0;
        }
    }

@media screen and (max-width:480px) {
    #simp ul {
        max-height: 100%;
    }
    #simp .simp-controls .simp-volume,
    #simp .simp-controls .simp-others {
        display: none;
    }
    #simp .simp-controls .simp-time {
        margin-right: 10px;
    }
}

@media screen and (max-width:370px) {
    #simp .simp-time .simp-slash,
    #simp .simp-time .end-time {
        display: none;
    }
}

/* ----- BUTTONS ----- */

.large-icon {
    font-size: var(--large-icon-size);
}

.volume {
    font-size: var(--small-icon-size);
}

button {
    background: var(--grey-black);
    color: var(--font-color);
    font-family: var(--main-font-family);
    font-size: var(--main-font-size);
    border: 0;
}
button:hover {
    cursor: pointer;
}
.small-button {
    box-shadow: 0.22em 0.22em var(--grey-blackest);
    color: var(--font-color);
    font-size: var(--large-icon-size);
    border-radius: var(--round-edge);
    text-align: center;
    white-space: nowrap;
    width: 50px;
    height: 50px;
    margin: .2em;
    padding-top: .3em;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.small-button:hover {
    color: var(--font-color);
    box-shadow: 0.22em 0.22em var(--grey-black);
    background: var(--tp-light);
    cursor: pointer;
}
.button-list {
    margin: 0 auto;
    display: grid;
    gap: .7rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.button-link {
    background: var(--grey-black);
    box-shadow: 0.4em 0.4em var(--grey-blackest);
    border-radius: var(--round-edge);
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    padding: .6em 0em .6em 0em;
    margin: .3em .3em 0em 0em;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.button-link:hover {
    box-shadow: 0.4em 0.4em var(--grey-black);
    background: var(--tp-light);
    color: var(--font-color);
}
.button-clear {
    background: transparent;
    border: 1px solid var(--font-color);
    box-shadow: none;
}
.button-clear:hover {
    box-shadow: none;
    background: var(--font-color);
    color: var(--grey-blackest);
}
.button-solo {
    width: 10em;
    margin: 1.5em;
}
.real-button {
    font-size: var(--small-font-size);
    padding: .6em;
    border-radius: var(--round-edge);
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.real-button:hover {
    background: var(--tp-light);
    color: var(--font-color);
}
.wide {
    grid-template-columns: 1fr;
}

@media (max-width: 450px) {
    a:hover {
        background-size: 2px 5px;
    }
    .button-list {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .wide {
        grid-template-columns: 1fr;
    }
    a:hover {
        color: var(--font-color);
        text-decoration-color: var(--font-color);
    }
    .small-button:hover {
        background: var(--grey-black);
        box-shadow: 0.22em 0.22em var(--grey-blackest);
        color: var(--font-color);
    }
    .button-link:hover {
        background: var(--grey-black);
        color: var(--font-color);
    }
}
@media (max-width: 650px) {
    .mobile-wide {
        grid-template-columns: 1fr;
    }
}

.inactive {
    border: 2px solid var(--grey-dark);
    color: var(--grey-dark);
}
.inactive:hover {
    background: var(--grey-dark);
}

/* ----- TABLES ----- */

table {
    width: 100%;
    text-align: left;
    margin: 1em 0em 1em 0em;
}
table th {
    background-color: var(--grey-blackest);
    text-align: left;
    padding: .2em .2em .2em .5em;
    font-weight: bold;
    position: sticky;
    top: 0;
}
table td {
    padding: .2em .2em .2em .2em;
}
table tr:nth-child(even) {
    background-color: var(--tp-medium);
}

.media-table table td:nth-child(1) {
    width: 10%;
}
.media-table table td:nth-child(2) {
    text-align: left;
    width: 15%;
    padding: .1em .2em .1em .5em;
    white-space: nowrap;
}
.media-table table td:nth-child(3) {
    text-align: left;
    padding: .1em .2em .1em .5em;
}

.genetics-info {
    background: transparent;
    color: var(--font-color);
    font-family: var(--main-font-family);
    font-size: var(--small-font-size);
    border: 1px solid var(--font-color);
    text-align: center;
    white-space: nowrap;
    padding: .5em .5em .5em .5em;
    margin-right: .5em;
    border-radius: 4px;
    vertical-align: middle;
    font-weight: bold;
    display: inline-block;
    width: 200px;
}
.genetics-list {
    padding-left: 0;
}
.genetics-list li {
    padding: .5em;
}
.color-info {
    vertical-align: middle;
}

.selective-breed table td:nth-child(1) {
    width: 10%;
    font-weight: bold;
}

@media (max-width: 450px) {
    .genetics-info {
        width: 100%;
        display: block;
        margin-bottom: .5em;
    }
    table {
        margin-bottom: 1em;
    }
}

@media (max-width: 820px) {
    .scrolling-table {
        margin-bottom: 1em;
        white-space: nowrap;
        overflow-x: scroll;
    }
}

/* ----- WIKI-BOX ----- */

.wikibox {
    background: transparent;
    text-align: center;
    clear: both;
    margin: 1em 0em 1em 0em;
}
.wikibox .subtitle {
    background: var(--tp-dark);
}
.wikibox details {
    background: var(--grey-dark);
    margin-bottom: 1.5em;
    padding: 3px;
    border-radius: var(--round-edge);
}
.wikibox summary {
    background: var(--body-bg);
    color: var(--font-color);
    padding: .5em 0em .5em 0em;
    text-align: center;
    font-weight: bold;
    margin: 3px;
    border-radius: var(--round-edge);
}
.wikibox p {
    font-size: var(--small-font-size);
    margin: 0;
}

.linklist li {
    font-size: var(--small-font-size);
    display: inline;
}
.linklist li:after {
    content: " · ";
    font-weight: bold;
}
.linklist li:last-child:after {
    content: "";
}

.split {
    display: flex;
    flex-direction: row;
    margin: 3px;
    border-bottom: 1px var(--tp-dark) solid;
}
.split .subtitle,
.subsubtitle {
    line-height: 1.3em;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    flex-shrink: 0;
    padding: .1em;
    height: auto;
    overflow: hidden;
    font-weight: bold;
}
.split .subtitle {
    color: var(--font-color);
    overflow: hidden;
    width: 120px;
}
.split .subsubtitle {
    background: var(--tp-light);
    margin-left: 3px;
    font-size: .8em;
    width: 85px;
}

.links {
    text-align: left;
    padding: 0 5px 0 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.links a {
    background: transparent;
    color: var(--font-color);
    text-decoration: none;
    border-bottom: 0;
    justify-content: flex-start;
}
.links a:hover {
    color: var(--grey-medium);
}

.categorylist {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.category {
    display: flex;
    flex-direction: row;
    margin: 1px 0 0 0;
    width: 100%;
    height: auto;
}
.categorylist>.category {
    border-bottom: 1px solid var(--tp-dark);
}
.categorylist>.category:last-of-type {
    border-bottom: none;
}

@media (max-width: 450px) {
    .split {
        flex-direction: column;
        margin-bottom: 0px;
    }
    .split .subtitle,
    .subsubtitle {
        width: 100%;
        justify-content: center;
        padding: 0;
    }
    .category {
        flex-direction: column;
    }
    .split .subsubtitle {
        width: 100%;
        margin: 0px;
    }
    .links {
        text-align: center;
    }
}

@media (min-width: 451px) {
    .categorylist:last-child {
        margin-bottom: 4px;
    }
}

/* ----- IMAGES ----- */

img, svg, video, audio {
    max-width: 100%;
    height: auto;
}

img.resize { 
    width: 40%;
}

iframe {
    max-width: 100%;
}

.iframe-border { 
    margin: 0em;
    border-radius: 1em;
    border: 7px solid transparent;
    background: var(--grey-black);
    mask-composite: exclude;
}

/* .changbin-iframe-border { 
    margin: 1.5em 0em 1.5em 0em;
    border-radius: 1em;
    border: 7px solid transparent;
    background: linear-gradient(45deg,rgb(223, 172, 228),rgb(140, 189, 245)) border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
} */

.iframe-border { 
    margin: 1.5em 0em 1.5em 0em;
    border-radius: 1em;
    border: 2px solid transparent;
    background: border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.float-right,
.float-right-unfloat {
    float: right;
    margin: 0px 0px 1em 1em;
}
.float-left,
.float-left-unfloat {
    float: left;
    margin: 0em 1em 1em 0em;
}
.float-right a {
    background: transparent;
    text-decoration: none;
}
.float-right a:hover {
    color: var(--grey-medium);
}

.fl-margin-right {
    margin-top: .5em;
    margin-right: 2em;
    margin-left: 1.5em;
}
.fl-margin { 
    margin: .5em 2em .5em 1em;
}
.fl-margin img {
    width: 220px;
    height: 220px;
}

.clear {
    clear: both;   
}

@media screen and (max-width: 620px) {
    .latest-mv {
        height: 250px;
    }
    .float-right-unfloat, 
    .float-left-unfloat { 
        display: block;
        float: none;
        margin: auto;
        text-align: center; 
    }
    .fl-margin { 
        width: 100%;
    }
    .fl-margin img { 
        width: 100%;
        height: 200px;
        object-fit: cover;
        object-position: 50% 50%;
    }
    .mobile-hidden {
        display: none;
    }
}
@media screen and (max-width: 850px) {
    .latest-mv {
        height: 420px;
    }
}
@media screen and (max-width: 415px) {
    .latest-mv {
        height: 288px;
    }
}

/* ----- GALLERY-GRID ----- */

.two-image-grid,
.three-image-grid, 
.four-image-grid {
    display: grid;
    grid-column-gap: .5em;
    width: min(100%);
    margin-inline: auto;
    margin: 1em 0em 1em 0em;
}

.two-image-grid {
    grid-auto-columns: 1fr 1fr;
    grid-template-areas: 'one' 'two';
}
.three-image-grid {
    grid-auto-columns: 1fr 1fr 1fr;
    grid-template-areas: 'one' 'two' 'three';
}
.four-image-grid {
    grid-auto-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas: 'one' 'two' 'three' 'four';
}

.two-image-grid img {
    border-radius: var(--round-edge);
    margin-bottom: 1px;
}

.three-image-grid img,
.four-image-grid img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--round-edge);
    margin-bottom: 1px;
}

#full-size img {
    aspect-ratio: auto;
}
#same-size img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.two-image-grid-column li,
.three-image-grid-column li,
.four-image-grid-column li {
    margin-top: 0;
    margin-bottom: 1em;
}

.two-image-grid-column:nth-child(1),
.three-image-grid-column:nth-child(1), 
.four-image-grid-column:nth-child(1) { 
    grid-area: one; 
}

.two-image-grid-column:nth-child(2),
.three-image-grid-column:nth-child(2),
.four-image-grid-column:nth-child(2) { 
    grid-area: two;
}

.three-image-grid-column:nth-child(3),
.four-image-grid-column:nth-child(3) { 
    grid-area: three;
}

.four-image-grid-column:nth-child(4) { 
    grid-area: four;
}

@media only screen and (min-width: 100px) {
    .two-image-grid { grid-template-areas: 'one two'; }
    .three-image-grid { grid-template-areas: 'one two three'; }
    .four-image-grid { grid-template-areas: 'one two three four'; }
}

@media screen and (max-width: 560px) {
    .two-image-grid { grid-template-areas: 'one' 'two'; }
    .three-image-grid { grid-template-areas: 'one' 'two' 'three'; }
    .four-image-grid { grid-template-areas: 'one two' 'three four'; }
}

/* ----- PROFILE-GRID ----- */

.profile-grid {
    display: grid;
    gap: 1rem;
    width: min(100%, 55rem);
    margin-inline: auto;
    
    grid-auto-columns: 1fr 1.2fr;
    grid-template-areas: 'one' 'two';
}

.profile:nth-child(1) { grid-area: one; }
.profile:nth-child(2) { grid-area: two; }

@media screen and (min-width: 940px) {
    .profile-grid { grid-template-areas: "one two"; }
}

/* ----- BASIC-GRID ----- */

.basic-grid-2 {
    display: grid;
    gap: 1rem;
    margin-inline: auto;
    margin: 1em 0em 0em 0em;
    text-align: center;
    
    grid-auto-columns: .7fr 1.5fr;
    grid-template-areas: 'one' 'two';
}
.basic-grid-2-equal {
    display: grid;
    gap: 1rem;
    margin-inline: auto;
    margin: 2em 0em 0em 0em;
    
    grid-auto-columns: 1fr 1fr;
    grid-template-areas: 'one' 'two';
}
.basic-grid-3 {
    display: grid;
    gap: 1rem;
    margin-inline: auto;
    margin: 1em 0em 1em 0em;
    text-align: center;
    
    grid-auto-columns: .8fr 1.5fr .5fr ;
    grid-template-areas: 'one' 'two' 'three';
}

.basic-2:nth-child(1) { grid-area: one; }
.basic-2:nth-child(2) { grid-area: two; max-width: 523px; margin: auto; }

.basic-2-equal:nth-child(1) { grid-area: one; }
.basic-2-equal:nth-child(2) { grid-area: two; }

.basic-3:nth-child(1) { grid-area: one; }
.basic-3:nth-child(2) { grid-area: two; }
.basic-3:nth-child(3) { grid-area: three; }

@media screen and (min-width: 945px) {
    .basic-grid-2, .basic-grid-2-equal { grid-template-areas: "one two"; }
    .basic-grid-3 { grid-template-areas: "one two three"; }
}
@media screen and (max-width: 945px) {
    .basic-grid-2 { grid-auto-columns: 1fr 1fr;  margin-bottom: 1em; }
    .basic-grid-3 { grid-auto-columns: 1fr 1fr 1fr; }
}

/* ----- LIGHTBOX ----- */

.lightbox {
    display: none;
}
.lightbox img {
    z-index: 4;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100vh;
}
.lightbox:target {
    background: var(--body-bg);
    display: grid;
    align-content: center;
    place-items: center;
    position: fixed;
    z-index: 3;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 0;
}
.lightbox:target:after {
    z-index: 4;
    position: fixed;
    font-size: 2em;
    font-weight: 200;
    line-height: 0;
    top: 0.75em;
    right: 0.5em;
}

/* ----- ANGELS ----- */

.angels {
    width: 40vw;
    margin: auto;
    padding-bottom: 1px;
}
#angel-left {
    width: 119px;
    height: 113px;
    float: left;
    position: relative;
}
#angel-right {
    width: 119px;
    height: 113px;
    float: right;
    position: relative;
}
@media only screen and (min-device-width: 100px) and (max-device-width: 1250px) {
    .angels {
        padding-top: 1em;
        width: 75vw;
    }
    #angel-left { 
        padding-top: 1.5em;
        width: 25%;
    }
    #angel-right { 
        padding-top: 1.5em;
        width: 25%;
    }
}