
      body {
            background-color: #000000;
            color: #00ff00;
            font-family: 'Courier New', Courier, monospace;
        }
        
        img, video, iframe {
            max-width: 100%;
            height: auto;
        }
        
        pre {
            overflow-x: auto;
        }
      .blinking {
                  animation: flashRedBlack 2.5s infinite;
      }
        
      @font-face {
        font-family: "Rainy Hearts";
        src: url("https://axayacatl.neocities.org/fonts/rainyhearts/rainyhearts.woff")
            format("woff"),
          url("https://axayacatl.neocities.org/fonts/rainyhearts/rainyhearts.ttf")
            format("truetype"),
          url("https://axayacatl.neocities.org/fonts/rainyhearts/rainyhearts.otf")
            format("opentype");
        font-weight: normal;
        font-style: normal;
        font-display: swap;
      }
      @font-face {
        font-family: "bluescreen";
        src: url("https://axayacatl.neocities.org/fonts/bluescreen/Blue%20Screen.woff")
            format("woff"),
          url("https://axayacatl.neocities.org/fonts/bluescreen/Blue%20Screen.ttf")
            format("truetype");
      }

      .butterfly {
  position: fixed;
  left: 6%;
  bottom: 10%;
  z-index: 0;
  width: 40vh;
}

      body {
        margin: 0;
        padding: 0;
        background-image: url("https://axayacatl.neocities.org/images/bgs/another.gif");
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-color: black;
        height: 100vh;
        position: relative;
        cursor: url("https://axayacatl.neocities.org/images/eyeball_cursor.gif"),
          auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }

      .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
      }

      .centered-image {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 45vw;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        z-index: 1;
        opacity: 1;
      }

      .links {
        display: flex;
        flex-direction: row;
        align-items: center;
        position: absolute;
        top: 80%;
        color: #fff;
        font-family: "bluescreen", monospace;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        flex-direction: row;
        justify-content: center;
      }

      .links a {
        text-decoration: none;
        margin: 0 -20px;
        width: 15vw;
        font-size: 1.7vw;
        transition: color 0.3s ease;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }
      
      .links, a:hover {
        color: red;
      }
      
      .links2 {
        display: flex;
        flex-direction: row;
        align-items: center;
        position: absolute;
        top: 86%;
        color: #ffffff;
        font-family: "bluescreen", monospace;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        flex-direction: row;
        justify-content: center;
      }
      
      .links2 a {
        text-decoration: none;
        margin: 0 -20px;
        width: 15vw;
        font-size: 1.7vw;
        transition: color 0.3s ease;
        color: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }
      
      .links2, a:hover {
        color: red;
      }

      .animated-cog-container {
        position: absolute;
        top: 20px;
        left: 20px;
        display: flex;
        align-items: center;
        z-index: 2;
      }

      .animated-cog {
        width: 100%;
        max-width: 6vw;
        cursor: pointer;
        animation: rotateCog 3s linear infinite;
        overflow: visible;
      }

      .animated-cog img {
        display: block;
        width: 100%;
        height: auto;
      }

      .update-box {
        position: absolute;
        top: 0;
        left: 100%;
        transform: translateX(10px);
        background-color:  yellow;
        padding: 10px;
        border-radius: 5px;
        text-align: left;
        color: #000;
        font-family: Arial, sans-serif;
        font-size: 14px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        white-space: nowrap;
        font-family: "Rainy Hearts", sans-serif;
        font-size: 20px;
        border-radius: 0;
        border: 1.5px dotted #000;
      }

      .animated-cog-container:hover .update-box {
        opacity: 1;
        pointer-events: auto;
      }

      .animated-cog-container:hover .animated-cog {
        animation: rotateCogOpposite 3s ease-in-out 2;
        cursor: none;
      }

      @keyframes rotateCog {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(360deg);
        }
      }

      @keyframes rotateCogOpposite {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(-720deg);
        }
      }
      
            .popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20%;
        height: 50%;
        background-color: rgba(57, 57, 57, 0.9);
        border: 1px solid #000;
        display: none;
        z-index: 10;
        padding: 20px;
        box-sizing: border-box;
      }

      .popup-content {
        text-align: center;
        font-family: "bluescreen", monospace;
      }      

      .popup-content a {
        color: black;
        text-decoration: none;
      }

      .popup-content a:visited {
        color: black;
      }

      .popup-content a:hover,
      .popup-content a:focus {
        color: black;
        text-decoration: underline;
      }

      @media (max-width: 1024px) {
        .centered-image {
          width: 55vw;
        }

        .links a,
        .links2 a {
          width: 20vw;
          font-size: 2vw;
        }

        .animated-cog {
          max-width: 8vw;
        }

        .heart {
          width: 35vh;
        }

        .butterfly {
          width: 35vh;
        }
      }

      @media (max-width: 768px) {
        body {
          height: auto;
          min-height: 100vh;
          overflow: auto;
          display: block;
        }

        .centered-image {
          position: relative !important;
          top: 0 !important;
          left: 0 !important;
          transform: none !important;
          width: 90vw !important;
          margin: 20px auto !important;
          z-index: 1;
        }

        .links,
        .links2 {
          position: relative !important;
          top: 0 !important;
          flex-direction: column !important;
          width: 100% !important;
          justify-content: center !important;
          margin: 20px 0 !important;
          padding: 10px 0 !important;
        }

        .links a,
        .links2 a {
          width: 80vw !important;
          font-size: 4vw !important;
          margin: 8px 0 !important;
        }

        .heart,
        .butterfly {
          position: fixed !important;
          width: 30vh !important;
          z-index: 0;
        }

        .heart {
          right: 5% !important;
          top: 5% !important;
        }

        .butterfly {
          left: 5% !important;
          bottom: 5% !important;
        }

        .animated-cog {
          max-width: 15vw !important;
        }

        .animated-cog-container {
          top: 10px !important;
          left: 10px !important;
        }

        .popup {
          width: 90% !important;
          height: auto !important;
          max-height: 80vh !important;
          overflow-y: auto !important;
        }
      }

      @media (max-width: 480px) {
        .centered-image {
          width: 95vw !important;
          margin: 15px auto !important;
        }

        .links,
        .links2 {
          margin: 15px 0 !important;
        }

        .links a,
        .links2 a {
          width: 90vw !important;
          font-size: 5vw !important;
          margin: 6px 0 !important;
        }

        .heart,
        .butterfly {
          width: 25vh !important;
        }

        .animated-cog {
          max-width: 20vw !important;
        }

        .update-box {
          font-size: 12px !important;
          padding: 8px !important;
        }

        .popup {
          width: 95% !important;
          padding: 15px !important;
        }

        .popup-content {
          font-size: 14px !important;
        }
      }
