body {
  font-family: "Segoe UI", "Hiragino Kaku Gothic ProN", sans-serif;
  background-color: #F3FFE1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  text-align: center;
}

h2 {
  color: #333;
  margin-bottom: 40px;
}

button {
  background-color: #94D82D; 
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px 30px;
  font-size: 18px;
  margin: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

button:hover {
  background-color: #ff9a2e;
  transform: scale(1.05);
}

