@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body,
html {
  height: 100%;
  overflow: hidden;
}

.hite {
  height: 100vh;
}

body.bg-dark {
  background: radial-gradient(
    circle,
    rgba(34, 193, 195, 0.3),
    rgba(34, 34, 44, 1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

h1,
h2 {
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
    0 0 20px rgba(255, 255, 255, 0.3);
}

h1 {
  font-size: 5rem;
}

h2 {
  font-size: 4rem;
}

button {
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 15px 40px;
  border: 2px solid #fff;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  margin-top: 30px;
}

#buttons-set {
  display: flex;
  gap: 10px;
}

button:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #34c1c3;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(34, 193, 195, 1);
  transform: scale(1.1);
}

button:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  button {
    font-size: 1.2rem;
    padding: 12px 30px;
  }
}
