.collapsible {
  background-image: linear-gradient(to bottom, rgb(63, 6, 30), rgb(98, 10, 47));
  color: white;
  cursor: pointer;
  width: 100%;
  padding: 6px 30px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 14px;
  margin-top: 10px;
  border-radius: 5px;
  min-height: 40px;
  line-height: 40px;
  box-shadow: 0 0 15px #250501;
}

.collapsible:hover {
  background-image: linear-gradient(
    to bottom,
    rgb(141, 18, 43),
    rgb(204, 54, 84)
  );
}

.content {
  padding: 0 20px;
  display: none;
  overflow: hidden;
  background-color: rgb(238, 192, 192);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.left-column {
  width: 30%;
  background-color: white;
  opacity: 0.1;
  float: left;
  border-radius: 1em;
}

.right-column {
  display: inline-block;
  padding-left: 50px;
  padding-right: 20px;
  width: 70%;
}

.collapsible,
.collapsible:hover,
.collapsible:active,
.collapsible:visited,
.collapsible:focus {
  text-decoration: none;
}

.container {
  min-height: 700px;
}
@media all and (min-width: 980px) {
  .container {
    display: flex;
  }
  .left-column img {
    width: 100%;
  }
}

@media all and (max-width: 980px) {
  .collapsible {
    min-height: 60px;
    line-height: 20px;
    font-size: 14px;
  }
  .left-column {
    width: 0;
    height: 0;
  }

  .left-column img {
    width: 0;
    height: 0;
  }
  .right-column {
    width: 90%;
    margin-left: 5%;
    padding: 0;
  }
  .collapsible {
    font-size: 12px;
  }
}

hr {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid white;
}
