.bodys {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #f0f0f0;
}

.buttons {
  text-decoration: none;
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(45deg, #4CAF50, #2e8b57);
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.buttons:hover {
  background: linear-gradient(45deg, #2e8b57, #4CAF50);
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.buttons:active {
  transform: scale(0.95);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .buttons {
    font-size: 16px;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .buttons {
    font-size: 14px;
    padding: 10px 20px;
  }
}