
img {
      border-radius: 5%; /* Rounds all corners by 10 pixels */
    }

/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: cadetblue ;
  color: var(--gradient);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

/* 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, .collapsible:hover {
  background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
 /* background-color: #f1f1f1;*/
}


/* Default: Desktop sizes (smaller images) */
.shaka_img {
    width: 40%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Mobile: make images larger */
@media (max-width: 768px) {
    .shaka_img {
        width: 90%;   /* or 100% if you want full width */
    }
}

