body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(to right, #fdfbfb, #ebedee);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.button_container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.button_container button {
  padding: 15px 35px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  color: #fff;
}

.button_1 {
  background-color: #3498db;
}
.button_1:hover {
  background-color: #2980b9;
  transform: scale(1.05);
}

.button_2 {
  background-color: #27ae60;
}
.button_2:hover {
  background-color: #1e8449;
  transform: scale(1.05);
}

.button_3 {
  background-color: #e67e22;
}
.button_3:hover {
  background-color: #ca6f1e;
  transform: scale(1.05);
}
