body {
  background-color: indianred;
  overflow-y: auto;
  overflow-x: hidden;
}

* {
  scrollbar-color: brown rgba(0, 0, 0, 0);
  scrollbar-width: auto;
  scrollbar-gutter: stable;
}

.accordion-item {
  flex-direction: column;
}

.accordion-header {
  color: black;
  background-color: white;
  border-width: 0px;
  border-radius: 8px;
  text-indent: 10px;
  font-size: 20px;
  text-align: left;
  margin-top: 4px;
  width: 80%;
  padding: 8px;
  cursor: pointer;
}

.accordion-header.active {
  border-bottom-left-radius: 0%;
  border-bottom-right-radius: 0%;
  background-color: rgba(150, 150, 150, 0.5);
}

.accordion-header:hover {
  background-color: #ddd;
}

.accordion-content {
  background-color: rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  border-width: 0px;
  border-radius: 8px;
  max-height: 0;
  width: 80%;
  padding: 4px;
  overflow: hidden;
  justify-content: start;
}

.accordion-content.active {
  max-height: 200px;
  padding: 15px;
  border-top-left-radius: 0%;
  border-top-right-radius: 0%;
}

@media (max-width: 768px) {
  .accordion-content {
    width: 90%;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .accordion-header {
    width: 90%;
  }
  
}