html,
body {
  margin: 0;
  padding: 0;
  overflow: hidden; /* Prevent scrolling */
}

#sketch-container {
  position: relative;
}

#controls-container {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

button {
  font-size: 16px;
  padding: 10px 20px;
  margin-right: 10px;
  cursor: pointer;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
}

input[type="range"] {
  width: 150px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  /* Adjust position of controls for smaller screens */
  #controls-container {
    top: 10px;
    left: 10px;
  }

  /* Make buttons and input range smaller for smaller screens */
  button {
    font-size: 14px;
    padding: 8px 16px;
  }

  input[type="range"] {
    width: 120px;
  }
}

/* Add more media queries as needed for other screen sizes */
