* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #d1e7ff, #f0f8ff);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  background-color: white;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.container h1 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}

#count {
  font-size: 48px;
  font-weight: bold;
  color: #007bff;
  margin: 20px 0;
}

.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.buttons button {
  padding: 10px 20px;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.buttons button:hover {
  background-color: #0056b3;
}
