body {
  margin: 0;
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.logo {
  max-width: 200px;
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}


.fake-link {
  color: #00ffff;
  font-size: 1.2rem;
  border: 1px solid #00ffff;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, color 0.3s;
  margin-bottom: 20px;
  cursor: pointer;
}

.fake-link:hover {
  background: #00ffff;
  color: #000;
}

a {
  color: #00ffff;
  text-decoration: none;
  font-size: 1.2rem;
  border: 1px solid #00ffff;
  padding: 10px 20px;
  border-radius: 10px;
  transition: background 0.3s, color 0.3s;
}

a:hover {
  background: #00ffff;
  color: #000;
}
