@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #1e09db;
  color: #cfc3f1;
  font-family: 'Montserrat', sans-serif;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.starfield {
  position: fixed;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 0;
  overflow: hidden;
}

.starfield::before {
  content: '';
  position: absolute;
  width: 2000px;
  height: 2000px;
  background: radial-gradient(circle, #097e44 2px, transparent 2px);
  background-size: 50px 50px;
  animation: moveStars 60s linear infinite;
  opacity: 0.4;
}

@keyframes moveStars {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100px, -100px);
  }
}

.container {
  position: relative;
  z-index: 10;
  text-align: center;
}

.logo {
  width: 150px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px #06df96);
}

h1 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #c0a9f6;
}

p {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #cfc3f1;
}

.buttons {
  margin-top: 20px;
}

button {
  background-color: #06fcfc;
  border: none;
  color: #00e231;
  font-weight: 700;
  padding: 12px 25px;
  margin: 0 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1.1rem;
}

button:hover {
  background-color: #0b79a5;
  color: #fff;
}
.btn {
  background-color: #06fcfc;
  border: none;
  color: #00e231;
  font-weight: 700;
  padding: 12px 25px;
  margin: 0 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn:hover {
  background-color: #0b79a5;
  color: #fff;
}
