body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

.container {
  text-align: center;
  padding-top: 100px;
  background-color: #f2f2f2;
  background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
}

h1 {
  font-size: 48px;
  color: #333333;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.button-container {
  margin-top: 50px;
}

.button {
  display: inline-block;
  margin: 10px;
  padding: 15px 30px;
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.button:hover {
  background-color: #45a049;
  transform: scale(1.1);
}
