
  .logo {
    background: var(--the-brand-color);
    border-radius: 100px;
    display: block;
    width: 70px;
    height: 70px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.25);
    position: relative;
    cursor: pointer;
    transition: filter 250ms ease-out;
    user-select: none;
    z-index: 3;
  }

  .logo:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35) inset;
  }

  .logo:hover {
    filter: brightness(130%);
    transition: none;
  }

  .logo:focus {
    outline: none;
  }

  .logo--big {
    width: 96px;
    height: 96px;
    margin-bottom: 12px;
  }

  .logo img {
    border-radius: inherit;
    width: 100%;
    height: 100%;
  }

  .logo__eyes {
    width: 25%;
    height: 10%;
    top: 40px;
    position: absolute;
    transform: translateX(-50%);
    top: 48%;
    left: 41%;
    animation: blink 10s infinite;
  }

  .logo__eyes:before {
    content: "";
    background: #F23B39;
    width: 100%;
    height: 40%;
    position: absolute;
    left: 0;
  }

  .logo__eyes:after {
    content: "";
    background: #F23B39;
    width: 100%;
    height: 40%;
    position: absolute;
    left: 0;
    bottom: 0;
  }

  @keyframes blink {
    0% {
      opacity: 0;
    }

    3% {
      opacity: 0;
    }

    4% {
      opacity: 1;
    }

    5% {
      opacity: 0;
    }

    50% {
      opacity: 0;
    }

    51% {
      opacity: 1;
    }

    52% {
      opacity: 0;
    }

    53% {
      opacity: 1;
    }

    54% {
      opacity: 0;
    }

    100% {
      opacity: 0;
    }
  }


  body {
    background: black;
    color: white;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  h1 {
    font-size: 6vw;
    text-align: center;
    position: absolute;
  }

  h1 div {
    font-size: 3vw;
    margin-top: 20px;
  }

  ul {
    list-style: none;
    padding: 0;
    text-align: center;
  }

  li {
    font-size:4vw;
    margin: 20px 0;
    -webkit-animation: fade-in 1s ease both;
  }

  li:nth-child(1) { -webkit-animation-delay: 0s; }
  li:nth-child(2) { -webkit-animation-delay: 2s; }
  li:nth-child(3) { -webkit-animation-delay: 4s; }
  li:nth-child(4) { -webkit-animation-delay: 6s; }
  li:nth-child(5) { -webkit-animation-delay: 8s; }
  li:nth-child(6) { -webkit-animation-delay: 10s; }
  li:nth-child(7) { -webkit-animation-delay: 12s; }
  li:nth-child(8) { -webkit-animation-delay: 14s; }

  body.stopped ul {
    display: none;
  }

  body.playing ul {
    display: block;
  }

  body.stopped h1 {
    display: block;
  }

  body.playing h1 {
    display: none;
  }

  @-webkit-keyframes fade-in {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

