<style>
body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(45deg, #ff6a00, #ee0979);
  height: 100%;
  margin: 0;
  overflow-x: auto
}
h2{
    text-align: center;
    color: #ff6a00;
    font-size: 50px;
    margin-top: 50px;
}
.counter-container {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  padding: 40px;
  text-align: center;
  width: 250px;
  transition: all 0.3s ease;
    margin: 100px auto;
}

.counter-container:hover {
  transform: scale(1.05);
}

.count {
  font-size: 50px;
  font-weight: bold;
  color: #ff6a00;
  margin: 20px 0;
  transition: all 0.2s ease;
}

button {
  background-color: #ff6a00;
  color: white;
  border: none;
  padding: 15px 25px;
  font-size: 20px;
  border-radius: 10px;
  cursor: pointer;
  margin: 10px;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #ee0979;
  transform: translateY(-5px);
}

button:active {
  transform: translateY(3px);
}

.reset-btn {
  background-color: #4caf50;
}

.reset-btn:hover {
  background-color: #45a049;
}
</style>