body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 20px;
}

/* Light Theme (default) */
body {
  background-color: #ffffff;
  color: #000000;
}

/* Dark Theme */
body.dark-theme {
  background-color: #121212;
  color: #ffffff;
}

.top-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 30px;
}

.control-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider {
  width: 200px;
  margin-top: 10px;
}

.button-row {
  display: flex;
  justify-content: space-between;
  margin: 20px auto;
  max-width: 600px;
}

.emoji-grid {
  display: grid;
  gap: 10px;
  margin: 20px auto;
  justify-content: center;
}

canvas {
  border: 1px solid #ddd;
  background-color: #f5f5f5;
}

button {
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
}

button:hover {
  background-color: #45a049;
}

.theme-toggle {
  margin-top: 10px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
}

.theme-toggle:hover {
  background-color: #45a049;
}

/* Styling for the project title and description */
.project-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4caf50;
  margin-bottom: 10px;
}

.project-description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}
