body {
  background-color: #000;
  color: #0f0;
  font-family: "Courier New", Courier, monospace;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.hacker-emulator {
  text-align: center;
  max-width: 800px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: neon-glow 3s infinite;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  white-space: nowrap;
  overflow: hidden;
}

.services ul {
  list-style-type: none;
  padding: 0;
}

.services li {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.services a {
  text-decoration: none;
  color: rgb(207, 200, 200);
}

.services a:hover {
  color: #fff;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: #0f0;
  padding: 1rem 0;
}

footer a {
  color: #0f0;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}


.logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  animation: smooth-color-change 5s infinite linear;
}

@keyframes neon-glow {
  0% {
    text-shadow: 0 0 5px #0f0, 0 0 10px #0f0, 0 0 20px #0f0, 0 0 40px #0f0;
  }
  50% {
    text-shadow: 0 0 10px #0f0, 0 0 20px #0f0, 0 0 40px #0f0, 0 0 80px #0f0;
  }
  100% {
    text-shadow: 0 0 5px #0f0, 0 0 10px #0f0, 0 0 20px #0f0, 0 0 40px #0f0;
  }
}

@keyframes smooth-color-change {
  0% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(180deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

@media (max-width: 600px) {
  .hacker-emulator {
    padding: 0 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  .services li {
    font-size: 1rem;
  }
}
