body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #1f2937, #111827);
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing-container {
  text-align: center;
}

.landing-container h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.landing-container p {
  color: #aaa;
  margin-bottom: 30px;
}

.button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
}

button {
  display: flex;
  flex-direction: column; /* Stack image and text vertically */
  align-items: center;    /* Center both image and text */
  justify-content: center;
  padding: 10px;
  border: none;
  background-color: #007BFF;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  width :100px;
  height : 100px
}

button img {
  margin-bottom: 8px; /* Space between image and text */
}
button:hover {
  background-color: #008c9e;
  transform: scale(1.05);
}

.page-container {
  text-align: center;
  padding: 40px;
}

.back-btn {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: #00bcd4;
  transition: color 0.3s ease;
}

.back-btn:hover {
  color: #26d9f8;
}


