* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: white;
    font-family: pixel32;
    background-color: rgb(29, 31, 33);
    text-align: center;
}

h1 {
    color: white;
    font-size: 56px;
    font-family: 'peachclubscript';
}

h2, h3, h4 {
    color: white;
    font-size: 42px;
    font-family: 'brothersignature';
}

p {
    color: white;
    font-size: 20px;
}

a {
    color: aliceblue;
    text-decoration: none;
}

a:hover {
    color: aliceblue;
    text-decoration: underline dotted;
    text-underline-offset: 4px;
}

.big-container {
    display: flex;
    flex-direction: column;
    padding: 50px;
    max-width: 80%;
    margin: 0 auto;
}

.big-header {
    font-family: 'peachclubscript';
    padding: 20px;
}

.divider-dotted {
    width: 100%;
    border-top: 2px dotted aliceblue;
    align-self: center;
    margin: 20px 0;
}

.divider-dash {
    width: 100%;
    border-top: 2px dashed aliceblue;
    margin: 10px 0;
}

.divider-lilac {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'pixel32';
}

.divider-lilac::before, .divider-lilac::after {
    content: "𓈒⠀𓂃⠀⠀˖⠀𓇬⠀˖⠀⠀𓂃⠀𓈒";
    flex: 1;
    height: 2px;
    background: transparent;
}

.main-container {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    padding: 20px;
    justify-content: center;
}

.card-inner-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
}

.art-side {
    width: 52%;
}

.spotify-side {
    width: 45%;
}

.spotify-side iframe {
    width: 100%;
    border: none;
    border-radius: 6px;
    margin-top: 8px;
}

.nav-card {
    width: calc(35%);
    position: relative;
    border: 2px dashed rgba(225, 225, 225, 0.5);
    outline: 2px dotted aliceblue;
    outline-offset: 4px;
    padding: 20px;
    min-height: 280px;
    min-width: 280px;
    text-align: left;
}

.ascii-card {
    position: relative;
    border: 2px dashed rgba(225, 225, 225, 0.5);
    outline: 2px dotted aliceblue;
    outline-offset: 4px;
    padding: 20px;
    min-height: 280px;
    min-width: 320px;
    width: auto;
    text-align: left;
}

.side-card {
    min-width: 45%;
    position: relative;
    border: 2px dashed rgba(225, 225, 225, 0.5);
    outline: 2px dotted aliceblue;
    outline-offset: 4px;
    padding: 20px;
    min-height: 280px;
    min-width: 280px;
    text-align: left;
}

.ascii-art {
    font-family: pixel32;
    margin: 15px 0;
    white-space: pre;
    line-height: 1.2;
    color: aliceblue;
}

.ribbon01-list {
    list-style: none;
    padding-left: 24px;
}

.ribbon01-list li {
    position: relative;
    margin: 6px 0;
}

.ribbon01-list li::before {
    content: "⋆.ꔫ.";
    position: relative;
    left: -5px;
    font-family: 'pixel32';
}

.ribbon02-list {
    list-style: none;
    padding-left: 24px;
}

.ribbon02-list li {
    position: relative;
    margin: 6px 0;
}

.ribbon02-list li::before {
    content: "𝜗ৎ";
    position: relative;
    left: -5px;
    font-family: 'pixel32';
}

.star-list {
    list-style: none;
    padding-left: 24px;
}

.star-list li {
    position: relative;
    margin: 6px 0;
}

.star-list li::before {
    content: "⋆｡°✩";
    position: relative;
    left: -5px;
    font-family: 'pixel32';
}

.checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border: 1.5px solid aliceblue;
    cursor: pointer;
    vertical-align: middle;
    position: relative;
}

.checkbox:checked {
    background: rgba(225, 225, 225, 0.5);
    border-color: aliceblue
}

.checkbox::after {
    content: "";
    position: absolute;
    left: 5px;
    width: 5px;
    height: 10px;
    color: aliceblue;
    border: solid aliceblue;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
}

.checkbox:checked::after {
    opacity: 1;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgb(118, 118, 118);
}

::-webkit-scrollbar-thumb {
    background: rgb(255, 255, 255);
    border-radius: 5px;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'pixel32';
    src: url('/sources/font/Pix32.ttf') format('truetype');
}

@font-face {
    font-family: 'peachclubscript';
    src: url('/sources/font/Peach-Club-Script.ttf') format('truetype');
}

@font-face {
    font-family: 'brothersignature';
    src: url('/sources/font/Brother-Signature.otf') format('opentype');
}