.myButton,
.content {
  width: 50%;
  margin-inline: auto;

  @media (width <= 1111px) {
    width: 70%;
  }
}

* {
  box-sizing: border-box;
}

body {
  background-image: linear-gradient(
    to top,
    #4fb576 0%,
    #44c489 30%,
    #28a9ae 46%,
    #28a2b7 59%,
    #4c7788 71%,
    #6c4f63 86%,
    #432c39 100%
  );
  height: 100vh;
  margin: 0;
  padding-top: 1rem;
}

.myButton {
  padding: 0.7rem;
  background-color: #ddd;
  position: relative;
  cursor: pointer;
}

.content {
  background-color: rgba(255, 0, 255, 5);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  display: flex;
  flex-wrap: wrap;
  place-content: center;
  background-image: url('assets/super.avif');

  img {
    padding: 1rem;
    width: 80%;
    height: 80%;
    transform: rotate(45deg);
  }
}

.myButton::after {
  content: '\002B';
  font-size: 2rem;
  font-weight: 900;
  position: absolute;
  right: 1rem;
  top: 0;
  padding: 0;
}

.active,
.myButton:hover {
  background-color: #555;
  color: white;
}

.active::after {
  content: '\2212';
}
