
  @media only screen and (max-width: 768px) {
    /* For mobile phones: */
    /* Style the buttons that are used to open and close the accordion panel */
    .accordion {
      cursor: pointer;
      padding: 18px;
      width: 100%;
      text-align: left;
      border: none;
      outline: none;
      transition: 0.4s;
    }
    .panel {
      /*padding: 0 18px;*/
      background-color: rgba(255, 255, 255, 0);
      max-height: 0;
      width: 100%;
      overflow: hidden;
      transition: max-height 1s ease-out;
    }
  }
  @media only screen and (min-width: 769px) {
    /* Style the buttons that are used to open and close the accordion panel */
    .accordion {
      cursor: pointer;
      padding: 18px;
      width: 80%;
      text-align: left;
      border: none;
      outline: none;
      transition: 0.4s;
    }
    .panel {
      /*padding: 0 18px;*/
      background-color: rgba(255, 255, 255, 0);
      max-height: 0;
      width: 80%;
      margin-left: 10%;
      overflow: hidden;
      transition: max-height 1s ease-out;
    }
  }



.accordion.proj-videogame {
  background-color: #544eaf;
  color: white;
  font-size: 30px; /* 1.5vw */
  font-family: GlacialIndifference;
}
.accordion.proj-music {
  background-color: #af4e9a;
  color: white;
  font-size: 30px; /* 1.5vw */
  font-family: GlacialIndifference;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #1d1d1d;
}