.container {
  height: 175px;
  width: auto;
}

/* Dropdown Button */
.dropbtn {
  background-color: #07122a;
  color: rgb(255, 255, 255);
  padding: 16px;
  font-size: 16px;
  border: none;
  font-family: "Poppins", sans-serif;
  border-radius: 12px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: relative;
  background-color: #f1f1f1;
  min-width: 130px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  text-align: center;
}

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

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: lightslategray;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: grey;
}

.questionsContainer {
  background: white;
  width: auto;
  height: 600px;
  display: flex;
  border: 0.15rem solid #07122a;
  margin: 50px auto;
  flex-direction: column;
}

.questionsList li {
  list-style: none;
}

.questionsList ul {
  list-style: none;
}
