.collapse {
  background-color: #222222;
  cursor: pointer;
  padding: 3px;
  width: calc(100% - 30px);
  color: #74bcee;
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  font-size: 14;
}

.active, .collapse:hover {
  background-color: #111111;
}

.accordion-content {
  padding: 0 5px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}