body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  text-align: center;
  margin: 0;
  padding: 20px;
}

.container {
  margin-top: 80px;
}

h2 {
  margin-bottom: 10px;
  font-size: 32px;
}

p {
  font-size: 20px;
  margin-bottom: 40px;
}

.button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

button {
  width: 80%;
  max-width: 300px;
  padding: 15px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  background-color: #07c160;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s;
}

button:hover {
  background-color: #05a14a;
}