/* Medium devices (landscape tablets, ipads 768px and up) */
@media only screen and (min-width: 800px) {
  /* Containers */
  .grid-container {
    display: grid;
    grid-template-areas:
      "header header "
      "menu main "
      "footer footer ";
    grid-gap: 1px;
    grid-template-columns: auto auto;
    justify-content: center;
  }

  header {
    grid-area: header;
    width: 100vw;
    height: 25vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #552583;
    background-image: url("../assets/icons/marble-gold.jpg");
  }

  .menu {
    grid-area: menu;
    width: 30vw;
    /* height: 110vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #552583;
  }

  main {
    grid-area: main;
    width: 70vw;
    /* height: 110vh; */
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #552583;
  }

  footer {
    grid-area: footer;
    width: 100vw;
    height: 20vh;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    text-align: center;
    color: #552583;
    font-family: "Cinzel", serif;
    font-weight: 700;
    /* background-image: url("../assets/icons/marble-gold.jpg"); */
  }
  /* End of main containers */

  /* Header container */
  .menuTitles {
    font-weight: 700;
    font-size: 1.3rem;
  }
  .iconStyle {
    max-width: 90%;
    max-height: 40%;
  }

  .headerDivider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 33vw;
  }

  .headerDividerTag {
    display: flex;
    flex-direction: row;
    align-self: flex-end;
    justify-content: flex-end;
    width: 33vw;
  }

  .tagLine {
    font-weight: 700;
    font-size: 1.2rem;
    color: #552583;
  }
  /* End of header container */

  /* Menu container */
  .imageContainers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .galleryImg {
    width: 30%;
    box-shadow: 2px 5px 12px #888888;
    margin: 10px;
  }
  /* End of menu container */

  /* Main container */
  .slideshow-container {
    max-width: 90vw;
    position: relative;
    margin: auto;
  }

  .mySlides {
    display: flex; /* changed to flex*/
    justify-content: center;
  }

  .mySlides:hover {
    transform: scale(1.1);
    display: flex;
    flex-direction: row;
  }

  .imageSize {
    max-width: 80%;
  }

  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }

  @-webkit-keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  /* End of main container */

  /* Footer container */
  .footerContainers {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25%;
    padding-left: 20px;
  }

  .footerTitles {
    font-size: 1.3rem;
  }

  .googleImage {
    max-width: 85%;
    max-height: 25%;
  }

  .facebookImage {
    max-width: 85%;
    max-height: 25%;
  }

  .socialContainer {
    height: 20vh;
  }
  /* End of footer container */
}
