/* tilt-buttons.css */
.tilt-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.tilt-btn {
  background-color: #0b3d91;
  color: white;
  font-size: 18px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.tilt-btn:hover {
  background-color: #1c56c0;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .button-container,
  .tilt-controls {
    padding: 0 10px;
  }

  .tilt-btn {
    width: 100%;
  }
}