body {
  font-family: Arial, sans-serif;
  text-align: center;
  padding-top: 50px;
  background-color: #f4f4f4;
}

h1 {
  margin-bottom: 30px;
}

.botones {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.botones button {
  width: 200px;
  padding: 15px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: #3498db;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}

.botones button:hover {
  background-color: #2980b9;
}
