/* gesture-recognition.css */
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f9fc;
  color: #333;
}
header {
  background-color: #004d99;
  color: #fff;
  padding: 1rem 2rem;

  width: 100%;
  top: 0;
  left: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ffcc00;
}

header h1 {
  margin: 1rem 0;
  text-align: center;
}

main {
  padding: 5rem 2rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section h2 {
  margin-top: 0;
  color: #004d99;
}

section p {
  font-size: 1rem;
  margin: 0.5rem 0 1rem;
}

#gestureArea {
  height: 300px;
  background-color: #e0e0e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #004d99;
  cursor: pointer;
  margin-top: 1rem;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.status {
  margin-top: 1rem;
  font-weight: bold;
  color: #333;
  text-align: center;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #004d99;
  color: #fff;

  width: 100%;
  bottom: 0;
  left: 0;
}
