body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
}

.menu {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
}

.menu button {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
<<<<<<< HEAD
  font-size: 16px;
=======
<<<<<<< HEAD
  font-size: 18px;
=======
  font-size: 16px;
>>>>>>> 821f09efead0527444d9b861ef198c9391862896
>>>>>>> 394a439 (Initial commit)
  cursor: pointer;
}

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

.container {
  width: 400px;
  height: auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

h1 {
  text-align: center;
  color: #4caf50;
}

.question {
  margin: 20px 0;
}

.question h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.options label {
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
}

.btn {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

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

@media (max-width: 600px) {
  .container {
    width: 90%;
  }
}

.dropdown {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.dropbtn {
  background-color: #4caf50;
  color: white;
  padding: 10px 16px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.dropbtn:hover,
.dropbtn:focus {
  background-color: #45a049;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown-content.show {
  display: block;
}
