body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #4facfe, #00f2fe);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

h1 {
  margin-bottom: 20px;
}

#count {
  font-size: 60px;
  margin: 20px 0;
  font-weight: bold;
}

.buttons button {
  padding: 10px 20px;
  margin: 5px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  opacity: 0.8;
}

button:nth-child(1) {
  background: #ff4d4d;
  color: white;
}

button:nth-child(2) {
  background: #999;
  color: white;
}

button:nth-child(3) {
  background: #4CAF50;
  color: white;
}