    /* Scrollbar */
    ::-webkit-scrollbar {
      width: 16px;
      height: 16px;
    }

    ::-webkit-scrollbar-track {
      background-color: black;
    }

    ::-webkit-scrollbar-thumb {
      background-color: black;
    }

    ::-webkit-scrollbar-corner,
    ::-webkit-resizer,
    ::-webkit-scrollbar-button {
      background-color: black;
      display: none;
    }

    body {
      margin: 0;
      padding: 0;
      background-color: black;
      color: red;
      font-family: 'Annie Use Your Telescope', cursive;
      font-size: 60px;
      letter-spacing: 1px;
      line-height: 0.5;
      overflow-y: scroll;
      text-align: center;
    }

    .title {
      font-family: 'Special Elite', monospace;
      font-size:70px;
      margin-top: 10px;
    }


    a {
      color: red;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      margin-top: 0;
    }

    a:hover {
      transform: scale(1.2);
      text-shadow: 0 0 10px red, 0 0 20px red;
    }