@media only screen and (max-width: 600px) {
  .about { 
      position: relative;
  }

  .back-button {
      position: absolute;
      top: -43px;
      left: 10px;
      font-size: 20px;
  }

  .about > h2 {
      font-family: "Joan", serif;
      text-align: center;
      margin: 20px 0;
      font-size: 40px;
  }

  .about p {
      margin: 10px 20px;
      font-family: "Joan", serif;
      font-size: 25px;
  }

  .container {
    width: 90%;
    margin: 25px auto;
  }

  .links > h2 {
      font-family: "Joan", serif;
      text-align: center;
      margin: 20px 0;
      font-size: 30px;
  } 

  .download-button {
      background-color: var(--col-med-purple);
      display: flex;
      height: 5vh;
      justify-content: center;
      align-items: center;
      width: 250px;
      border-radius: 50px;
      margin: 20px auto;
  }

  .download-button:hover {
      box-shadow: 5px 5px 5px 0px #4C4C4C;
  }

  .download-button p {
      margin: 0 20px;
      font-family: "Joan", serif;
      font-size: 25px;
      text-decoration: none;
      color: black;
  }

  .download-button img {
      height: 100%;
  }

  .slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
  }

  /* Hide the images by default */
  .mySlides {
    display: none;
    text-align: center;
  }

  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 15px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: var(--col-dark-purple);
  }

  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }

  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    background-color: var(--col-dark-purple);
  }

  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: var(--col-med-purple);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active, .dot:hover {
    background-color: var(--col-dark-purple);
  }

  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }

  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

  .slide-img {
      height: 100%;
      max-width: 100%;
      overflow: hidden;
      margin: auto;
  }
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
  .about { 
      position: relative;
  }

  .back-button {
      position: absolute;
      top: 10px;
      left: 30px;
      font-size: 25px;
  }

  .about > h2 {
      font-family: "Joan", serif;
      text-align: center;
      margin: 20px 0;
      font-size: 40px;
  }

  .about p {
      margin: 10px 20px;
      font-family: "Joan", serif;
      font-size: 25px;
  }

  .container {
    width: 90%;
    margin: 25px auto;
  }

  .links > h2 {
      font-family: "Joan", serif;
      text-align: center;
      margin: 20px 0;
      font-size: 30px;
  } 

  .download-button {
      background-color: var(--col-med-purple);
      display: flex;
      height: 5vh;
      justify-content: center;
      align-items: center;
      width: 250px;
      border-radius: 50px;
      margin: 20px auto;
  }

  .download-button:hover {
      box-shadow: 5px 5px 5px 0px #4C4C4C;
  }

  .download-button p {
      margin: 0 20px;
      font-family: "Joan", serif;
      font-size: 25px;
      text-decoration: none;
      color: black;
  }

  .download-button img {
      height: 100%;
  }

  .slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
  }

  /* Hide the images by default */
  .mySlides {
    display: none;
    text-align: center;
  }

  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 15px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: var(--col-dark-purple);
  }

  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }

  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    background-color: var(--col-dark-purple);
  }

  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: var(--col-med-purple);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active, .dot:hover {
    background-color: var(--col-dark-purple);
  }

  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }

  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

  .slide-img {
      height: 100%;
      max-width: 100%;
      overflow: hidden;
      margin: auto;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about { 
      position: relative;
  }

  .back-button {
      position: absolute;
      top: 10px;
      left: 30px;
      font-size: 25px;
  }

  .about > h2 {
      font-family: "Joan", serif;
      text-align: center;
      margin: 20px 0;
      font-size: 40px;
  }

  .about p {
      margin: 10px 20px;
      font-family: "Joan", serif;
      font-size: 25px;
  }

  .container {
    width: 90%;
    margin: 25px auto;
  }

  .links > h2 {
      font-family: "Joan", serif;
      text-align: center;
      margin: 20px 0;
      font-size: 30px;
  } 

  .download-button {
      background-color: var(--col-med-purple);
      display: flex;
      height: 5vh;
      justify-content: center;
      align-items: center;
      width: 250px;
      border-radius: 50px;
      margin: 20px auto;
  }

  .download-button:hover {
      box-shadow: 5px 5px 5px 0px #4C4C4C;
  }

  .download-button p {
      margin: 0 20px;
      font-family: "Joan", serif;
      font-size: 25px;
      text-decoration: none;
      color: black;
  }

  .download-button img {
      height: 100%;
  }

  .slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
  }

  /* Hide the images by default */
  .mySlides {
    display: none;
    text-align: center;
  }

  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 15px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: var(--col-dark-purple);
  }

  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }

  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    background-color: var(--col-dark-purple);
  }

  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: var(--col-med-purple);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active, .dot:hover {
    background-color: var(--col-dark-purple);
  }

  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }

  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

  .slide-img {
      height: 100%;
      max-width: 100%;
      overflow: hidden;
      margin: auto;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .container {  
      margin: 25px auto 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
      gap: 1% 1%;
      grid-auto-flow: column;
      align-content: center;
      grid-template-areas:
          "image image about about"
          "image image about about"
          "image image about about"
          "image image about about"
          "image image about about"
          "idk idk links links";
      width: 90%;
      height: fit-content;
  }

  .about { 
      grid-area: about;
      position: relative;
  }

  .back-button {
      position: absolute;
      top: 25px;
      left: 30px;
  }

  .about > h2 {
      font-family: "Joan", serif;
      text-align: center;
      margin: 20px 0;
      font-size: 30px;
  }

  .about p {
      margin: 10px 20px;
      font-family: "Joan", serif;
      font-size: 15px;
  }

  .links { 
      grid-area: links;
  }

  .links > h2 {
      font-family: "Joan", serif;
      text-align: center;
      margin: 20px 0;
      font-size: 20px;
  }

  .download-button {
      background-color: var(--col-med-purple);
      display: flex;
      height: 5vh;
      justify-content: center;
      align-items: center;
      width: 250px;
      border-radius: 50px;
      margin: 0 auto;
  }

  .download-button:hover {
      box-shadow: 5px 5px 5px 0px #4C4C4C;
  }

  .download-button p {
      margin: 0 20px;
      font-family: "Joan", serif;
      font-size: 15px;
      text-decoration: none;
      color: black;
  }

  .download-button img {
      height: 100%;
  }

  .image { 
      grid-area: image; 
  }

  .slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
  }

  /* Hide the images by default */
  .mySlides {
    display: none;
    text-align: center;
  }

  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 15px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: var(--col-dark-purple);
  }

  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }

  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    background-color: var(--col-dark-purple);
  }

  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: var(--col-med-purple);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active, .dot:hover {
    background-color: var(--col-dark-purple);
  }

  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }

  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

  .slide-img {
      height: 100%;
      max-width: 100%;
      overflow: hidden;
      margin: auto;
  }

  .idk { 
      grid-area: idk; 
  }
}

@media only screen and (min-width: 1200px) {
  .container {  
      margin: 25px auto 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      grid-template-rows: 1fr 1fr 1fr 1fr;
      /* grid-auto-columns: 300px;
      grid-auto-rows: 300px; */
      gap: 1% 1%;
      grid-auto-flow: column;
      align-content: center;
      grid-template-areas:
          "image image about about"
          "image image about about"
          "image image about about"
          "idk idk links links";
      width: 90%;
      height: fit-content;
  }

  .about { 
      grid-area: about;
      position: relative;
  }

  .back-button {
      position: absolute;
      top: 45px;
      left: 30px;
  }

  .about > h2 {
      font-family: "Joan", serif;
      text-align: center;
      margin: 30px 0;
      font-size: 40px;
  }

  .about p {
      margin: 20px;
      font-family: "Joan", serif;
      font-size: 20px;
  }

  .links { 
      grid-area: links;
  }

  .links > h2 {
      font-family: "Joan", serif;
      text-align: center;
      margin: 30px 0;
      font-size: 30px;
  }

  .download-button {
      background-color: var(--col-med-purple);
      display: flex;
      height: 5vh;
      justify-content: center;
      align-items: center;
      width: 300px;
      border-radius: 50px;
      margin: 0 auto;
  }

  .download-button:hover {
      box-shadow: 5px 5px 5px 0px #4C4C4C;
  }

  .download-button p {
      margin: 0 20px;
      font-family: "Joan", serif;
      font-size: 20px;
      text-decoration: none;
      color: black;
  }

  .download-button img {
      height: 100%;
  }

  .image { 
      grid-area: image; 
  }

  .slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
  }

  /* Hide the images by default */
  .mySlides {
    display: none;
    text-align: center;
  }

  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: var(--col-dark-purple);
  }

  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }

  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    background-color: var(--col-dark-purple);
  }

  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: var(--col-med-purple);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active, .dot:hover {
    background-color: var(--col-dark-purple);
  }

  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }

  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

  .slide-img {
      height: 100%;
      max-width: 100%;
      overflow: hidden;
      margin: auto;
  }

  .idk { 
      grid-area: idk; 
  }
}