    body {
      font-family: 'Press Start 2P', monospace;
      background-color: #000;
      color: #00ff00;
      padding: 20px;
      font-size: 12px;
    }

    h1, h2 {
      color: #00ffff;
    }

    a {
      color: #00ffff;
      text-decoration: none;
      transition: 0.3s;
    }

    a:hover {
        text-shadow: 
        0 0 2px #00ffff,
        0 0 5px #00ffff,
        0 0 10px #00ffff,
        0 0 20px #00ffff;
        text-decoration: none;
    }

    ul {
      list-style-type: square;
      padding-left: 20px;
    }

    li {
      margin-bottom: 8px;
    }

    .back-to-home {
      display: block;
      margin: 0px ;
      padding: 10px 20px;
      background-color: #222;
      color: #33ff00;
      border: 2px solid #00ffcc;
      border-radius: 5px;
      width: fit-content;
      text-align: center;
      transition: background 0.3s, transform 0.3s;
    }

    .back-to-home:hover {
      background-color: #00ffcc;
      color: black;
      transform: scale(1.05);
      box-shadow: 0 0 10px #00ffcc;
    }

    section {
      margin-top: 30px;
    }