@font-face {
  font-family: range;
  src:url(maple.ttf);
}

:root {
  --color-blossom: #fb007a;
  --color-fade: #10a778;
  --color-bg: #f1f1f1;
  --color-bg-alt: #e1e1e1;
  --color-text: #222222;
  --font-size-base: 1.5rem;
  --font-family-base:range, Cantarell, -apple-system, Arial, sans-serif;
}


@media (prefers-color-scheme: light) {
  :root {
    --color-bg: #f1f1f1;
    --color-text:#222222;
    --color-bg-alt: #e1e1e1;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #222222;
    --color-bg-alt: #303030;
    --color-text: #f1f1f1;
  }
}

/* Sakura.css v1.4.1
 * ================
 * Minimal css theme.
 * Project: https://github.com/oxalorg/sakura/
 */
  /* Body */
  html {
    font-size: 62.5%;
    font-family: var(--font-family-base);
  }

  body {
    font-size: var(--font-size-base);
    line-height: 1.618;
    max-width: 38em;
    color: var(--color-text);
    background-color: var(--color-bg);
    padding: 13px;
    width: 50%;
    margin: 0 auto;
  }


  @media (max-width: 684px) {
    body {
      font-size: calc(var(--font-size-base) * 0.85);
      width: 90%;
    }
    .track {
      padding: 12px 16px;
    }
    .track-number {
      width: 35px;
    }
    .modal-content {
      width: 85%;
      max-width: 300px;
    }
  }
  @media (max-width: 382px) {
    body {
      font-size: calc(var(--font-size-base) * 0.75);
      width: 95%;
    }
    .track {
      padding: 10px 12px;
    }
    .track-number {
      width: 30px;
    }
  }
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.1;
    font-family: var(--font-family-base);
    color:var(--color-blossom);
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-word;
  }

  h1 {
    font-size: 2.35em;
  }

  h2 {
    font-size: 2em;
  }

  h3 {
    font-size: 1.75em;
  }

  h4 {
    display: inline;
    font-size: 1.5em;
  }

  h5 {
    font-size: 1.25em;
  }

  h6 {
    font-size: 1em;
  }

  p {
    margin: 1.0rem 0;
  }

  small, sub, sup {
    font-size: 75%;
  }

  hr {
    border-color: var(--color-blossom);
  }

  a {
    text-decoration: none;
    color: var(--color-fade);
  }
  a:visited {
    color: var(--color-fade);
  }

  a:hover {
    color: var(--color-fade);
    border-bottom: 2px solid var(--color-fade);
  }

  .no-underline {
    border-bottom: none;
  }


  ul {
    padding-left: 1.4em;
    margin-top: 0px;
    margin-bottom: 2.5rem;
    overflow-y: auto;
    max-height:40vh;
  }

  ul::-webkit-scrollbar {
    width:0.5em;
  }

  ul::-webkit-scrollbar-track {
    background-color: var(--color-bg);
  }

  ul::-webkit-scrollbar-thumb {
    background-color: var(--color-bg-alt);
    border-radius:0.5em;
  }

  li {
    margin-bottom: 0.4em;
  }

  blockquote {
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 1em;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    padding-right: 0.8em;
    border-left: 5px solid var(--color-blossom);
    margin-bottom: 2.5rem;
    background-color: var(--color-bg-alt);
  }

  blockquote p {
    margin-bottom: 0;
  }

  img, video {
    height: auto;
    max-width: 100%;
    margin-top: 0px;
    margin-bottom: 2.5rem;
  }

  /* Pre and Code */
  pre {
    background-color: var(--color-bg-alt);
    display: block;
    padding: 1em;
    overflow-x: auto;
    margin-top: 0px;
    margin-bottom: 2.5rem;
    font-size: 0.9em;
  }

  code, kbd, samp {
    font-size: 0.9em;
    padding: 0 0.5em;
    background-color: var(--color-bg-alt);
    white-space: pre-wrap;
  }

  pre > code {
    padding: 0;
    background-color: transparent;
    white-space: pre;
    font-size: 1em;
  }

  /* Tables */
  table {
    text-align: justify;
    width: 100%;
    border-collapse: collapse;
  }

  td, th {
    padding: 0.5em;
    border-bottom: 1px solid var(--color-bg-alt);
  }

  /* Buttons, forms and input */
  input, textarea {
    border: 1px solid var(--color-text);
  }
  input:focus, textarea:focus {
    border: 1px solid var(--color-blossom);
  }

  textarea {
    width: 100%;
  }

  .button, button, input[type=submit], input[type=reset], input[type=button] {
    display: inline-block;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    background-color: var(--color-blossom);
    color: var(--color-bg);
    border-radius: 1px;
    border: 1px solid var(--color-blossom);
    cursor: pointer;
    box-sizing: border-box;
  }
  .button[disabled], button[disabled], input[type=submit][disabled], input[type=reset][disabled], input[type=button][disabled] {
    cursor: default;
    opacity: 0.5;
  }
  .button:focus:enabled, .button:hover:enabled, button:focus:enabled, button:hover:enabled, input[type=submit]:focus:enabled, input[type=submit]:hover:enabled, input[type=reset]:focus:enabled, input[type=reset]:hover:enabled, input[type=button]:focus:enabled, input[type=button]:hover:enabled {
    background-color: var(--color-fade);
    border-color: var(--color-fade);
    color: var(--color-bg);
    outline: 0;
  }

  textarea, select, input {
    color: var(--color-text);
    padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
    margin-bottom: 10px;
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-bg-alt);
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box;
  }
  textarea:focus, select:focus, input:focus {
    border: 1px solid var(--color-blossom);
    outline: 0;
  }

  input[type=checkbox]:focus {
    outline: 1px dotted var(--color-blossom);
  }

  label, legend, fieldset {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }

  summary {
    color: var(--color-blossom);
    font-size: 1.25em;
  }

  main {
    margin-bottom:3.0em
  }

  /* Background overlay */
  .modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  /* Show when targeted */
  .modal:target {
    opacity: 1;
    visibility: visible;
  }

  /* Modal box */
  .modal-content {
    background: white;
    padding: 4rem;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    position: relative;
  }

  /* Close button */
  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    text-decoration: none;
    font-size: 24px;
    color: black;
  }

  .close:hover {
    text-decoration: none;
    border:none
    color: var(--color-fade);
  }


  /* Playlist-specific styles */
  .subtitle {
    text-align: center;
    color: var(--color-text);
    opacity: 0.7;
    margin-bottom: 40px;
  }
  .playlist {
    background: var(--color-bg-alt);
    border-radius: 16px;
    overflow: hidden;
  }
  .track {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--color-bg);
    transition: background 0.2s ease;
    text-decoration: none;
    color: var(--color-text);
    cursor: pointer;
  }
  .track:visited {
    color: var(--color-text);
  }
  .track:hover {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-bg);
  }
  .track:last-child {
    border-bottom: none;
  }
  .track-number {
    width: 50px;
    color: var(--color-text);
    /* opacity: 0.6; */
    font-weight: 500;
  }
  .track-info {
    flex: 1;
  }
  .track-title {
    font-weight: 500;
    margin-bottom: 4px;
  }
  .track-artist {
    font-size: 0.85em;
    color: var(--color-text);
    /* opacity: 0.7; */
  }

  .spotify-link {
    text-align: center;
    margin-top: 30px;
  }
  .spotify-link a {
    display: inline-block;
    background: #1DB954;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s, background 0.2s;
  }
  .spotify-link a:hover {
    background: #1ed760;
    transform: scale(1.05);
    border: none;
  }
  .modal-content {
    background: var(--color-bg);
    color: var(--color-text);
  }
  .modal-content .close {
    color: var(--color-text);
  }
  .back-link {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--color-fade);
  }
  .back-link:hover {
    border-bottom: 2px solid var(--color-fade);
  }


