body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.button {
  padding: 15px 30px;
  font-size: 24px;
  text-decoration: none;
  color: white;
  background-color: #007bff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: all 200ms ease;
}

.button:hover {
  background-color: #0056b3;
  transform: scale(0.9);
}
