* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  height: 100vh;
  background: url("/step2/img/bg.png") no-repeat center center / cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  color: white;
  text-align: center;
}

h1 {
  font-size: 3rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
}

.button {
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  border-radius: 25px;
  color: white;
  padding: 12px 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  text-decoration: none;
}

.button:hover {
  background-color: white;
  color: black;
}

footer {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  opacity: 0.8;
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}
