* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

h1 {
  margin-bottom: 20px;
  color: #333;
}

.controls {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#fly-count {
  width: 60px;
  padding: 5px;
}

#apply-count {
  padding: 5px 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 3px;
}

#apply-count:hover {
  background-color: #45a049;
}

.fly {
  position: absolute;
  width: 30px;
  height: 30px;
  z-index: 1000;
  pointer-events: none;
  transition: transform 0.2s;
}


.fly-poop {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #3a2a1a;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.8;
}