* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.middlelane {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  min-height: 1000px;
  background-color: #111111;
}

.collapsible {
  cursor: pointer;

  color: aliceblue;
  background-color: #111111;
  outline: none;
  border: none;
  font-size: 35px;
}

.active,
.collapsible:hover {
  background-color: rgb(36, 36, 36);
  height: auto;
}

.content {
  padding: 0 18px;
  display: none; /* Ensure content is hidden initially */
  overflow: hidden;
  color: rgb(210, 210, 210);
  text-align: center;
  font-size: 30px;
  height: auto;
  max-height: 0;
  transition: max-height 0.3s ease-out;
}

p {
  color: #e5f000;
}
