@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0b0c10;
  color: #66fcf1;
  font-family: 'Orbitron', sans-serif;
}

main {
  text-align: center;
}

h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
  letter-spacing: 4px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

a {
  color: #45a29e;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
  color: #66fcf1;
  text-shadow: 0 0 10px #66fcf1;
}

p {
  max-width: 600px;
  margin: 0 auto 2rem auto;
  line-height: 1.5;
  color: #c5c6c7;
}

.back {
  display: inline-block;
  margin-top: 2rem;
  color: #45a29e;
  font-weight: bold;
}
