#logoDescription {
  margin: 10%;
  padding: 3%;
  /* border: var(--mainColour) solid 1px; */
  line-height: 1.2;
  font-size: var(--mobile_body);
}

@media only screen and (orientation: portrait) {
  .mobileHeader {
    width: 100%;
    height: 20vh;
    padding: 15% 5% 5% 5%;
    text-transform: uppercase;
  }

  .portraitMobile {
    min-height: 85vh;
  }

  #poster,
  .circle {
    display: none;
  }

  .mobileHeader h1 {
    font-size: var(--mobile_h1);
    line-height: 1.1;
  }

  .artwork {
  }
  .artwork a:link,
  .artwork a:visited {
    text-decoration: none;
    color: var(--mainColour);
  }

  /* Slideshow container */
  .slideshow-container {
    position: relative;
    margin: auto;
  }

  /* Hide the images by default */
  .mySlides {
    display: none;
  }

  .thumbnail {
    padding: 2% 7% 10% 7%;
    width: 100%;
    height: auto;
  }

  /* Next & previous buttons */
  .prev,
  .next {
    z-index: 5;
    cursor: pointer;
    position: absolute;
    top: 103%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: var(--mainColour);
    font-weight: bold;
    font-size: 2rem;
    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;
  }

  /* Caption text */
  .text {
    color: var(--mainColour);
    padding: 8px 12px;
    position: absolute;

    width: 100%;
    text-align: center;

    text-transform: uppercase;
  }

  .text h3 {
    font-size: var(--mobile_h2);
    line-height: 1;
    padding-bottom: 2%;
    font-style: italic;
  }

  .text p {
    font-size: var(--mobile_body);
    line-height: 1;
  }

  #dot {
    margin-top: 12%;
  }
  /* The dots/bullets/indicators */
  .dot {
    /* cursor: pointer; */

    height: 3px;
    width: 40px;
    margin: 0 2px;
    background-color: var(--mainColour);

    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active,
  .dot:hover {
    background-color: #717171;
  }

  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }

  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
}

@media only screen and (min-height: 700px) and (orientation: portrait) {
  .mobileHeader {
    height: 20vh;
    padding: 20% 5% 2% 5%;
  }

  .portraitMobile {
    min-height: 80vh;
  }

  .thumbnail {
    padding: 10% 7% 20% 7%;
  }
}

@media only screen and (min-width: 768px) and (orientation: portrait) {
  .mobileHeader {
    height: 20vh;
    padding-top: 10%;
  }

  .mobileHeader h1 {
    font-size: 2rem;
  }

  .thumbnail {
    padding: 0% 15% 5% 15%;
    width: auto;
    height: 60vh;
  }

  .prev,
  .next {
    padding: 0% 5%;
    font-size: 3rem;
  }

  .text h3 {
    font-size: 1.9rem;
  }

  .text p {
    font-size: 1.2rem;
  }

  .dot {
    height: 5px;
    width: 60px;
    margin: 0 2px;
  }
}
