body {
  margin: 0;
  background-color: #dee2ff; /* light blue background */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Verdana", cursive, sans-serif;
}

.welcome-container {
  text-align: center;
}

.star-link {
  font-size: 170px;
  text-decoration: none;
  color: #8e9aaf; /* soft bluish-purple */
  transition: transform 0.3s ease;
  display: inline-block;
}

.star-link:hover {
  transform: scale(1.2);
}

.enter-text {
  margin-top: 15px;
  font-size: 20px;
  color: #8e9aaf;
  letter-spacing: 1px;
}
