/* styles.css */
body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(145deg, #1a1f26, #232b36);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.container {
  text-align: center;
}

.rounded-button {
  background-color: #32d296; /* Светло-зеленый цвет */
  color: #ffffff;
  font-size: 18px;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 -2px 4px rgba(255, 255, 255, 0.1) inset;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rounded-button:hover {
  background-color: #28b383; /* Темнее при наведении */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3), 0 -3px 6px rgba(255, 255, 255, 0.1) inset;
  transform: scale(1.05);
}

.rounded-button:active {
  background-color: #249972; /* Еще темнее при клике */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -1px 2px rgba(255, 255, 255, 0.1) inset;
  transform: scale(0.98);
}