body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
  margin: 0;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
}

.container {
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, color 0.3s;
}

.choices button {
  padding: 10px 20px;
  margin: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.choices button:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.result p {
  font-size: 18px;
  margin: 10px 0;
}

.gesture-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.gesture {
  width: 100px;
  height: 100px;
  margin: 0 20px;
  display: none;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#dark-mode-toggle {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 10px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 24px;
  transition: transform 0.3s;
}

#dark-mode-toggle:hover {
  transform: scale(1.2);
}

/* Dark mode styles */
body.dark-mode {
  background-color: #121212;
  color: #e0e0e0;
}

body.dark-mode .container {
  background-color: #1e1e1e;
  color: #e0e0e0;
}

body.dark-mode .choices button {
  background-color: #333;
  color: #e0e0e0;
}

body.dark-mode .choices button:hover {
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

body.dark-mode #dark-mode-icon {
  content: "🌜";
}

footer {
  position: absolute;
  bottom: 10px;
  text-align: center;
  width: 100%;
  color: #666;
}

body.dark-mode footer {
  color: #aaa;
}

#reset-button {
  padding: 10px 20px;
  margin-top: 20px;
  font-size: 16px;
  cursor: pointer;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  transition: background-color 0.3s, color 0.3s;
}

#reset-button:hover {
  background-color: #e0e0e0;
}

body.dark-mode #reset-button {
  background-color: #333;
  color: #e0e0e0;
  border: 1px solid #666;
}

body.dark-mode #reset-button:hover {
  background-color: #444;
}

/*

#sad-emoji-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;
  color: transparent;
  animation: fadeInOut 1s ease-in-out infinite alternate;
}

@keyframes fadeInOut {
  0% {
    color: transparent;
  }
  50% {
    color: transparent;
  }
  100% {
    color: #ff0000;
  }
}

*/
