*{
  box-sizing: border-box;
  margin: 5;
 
}

nav {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left:auto;

}


.logo {
  margin-left: 20px;
  animation-name: example;
  animation-duration: 4s;
}

.mural {
  display: block;
 
  margin-right: 400px;
  width:100%;
  height: auto;
 
}

nav a{
  max-width: 100%;
  height: auto;
  text-decoration: none;
  text-decoration-color:black;
  padding: 0 0.4rem;
}



.gallery{
  /*display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 5vw);
  grid-gap: 6px;*/

}



.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width:100%;
  height: auto;
  margin-top: 9px;
}

@keyframes example{
  from {
    translate: -150vw 0;
    scale: 250% 1;
  }

  to {
    translate: 0 0;
    scale: 100% 1;
  }
}




.reel { 
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
  height: 40%;
  margin-right: 3px;
  margin-top: 3px;
  margin-bottom: 3px;
  margin-left: 3px;
  transition: all 0.9s ease;
  animation-name: showcase;
  animation-duration: 2s; 
  } 
  
  /*change the number below to scale to the appropriate size*/ 
  .reel:hover { 
  transform: scale(1.2); 
  transition: 0.4s;
  margin-right: 5%;
  margin-left: 5%;
  margin-top: 5%;
  margin-bottom: 5%;  
  }
  
  @keyframes showcase{
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  .image{
    max-width: 40%;
    height: auto;
  }
  
  .containers {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    -webkit-box-reflect: below 2px linear-gradient(transparent, #0005);
  }
  
  .containers .box {
    position: relative;
    width: 300px;
    height: 300px;
    background: linear-gradient(
      45deg,
      #00f376 10%,
      transparent 10%,
      transparent 50%,
      #00f376 50%,
      #00f376 60%,
      transparent 60%,
      transparent 100%
    );
    background-size: 40px 40px;
    transform: rotate(calc(var(--i) * 90deg));
    animation: animate 0.3s linear infinite;
  }
  
  @keyframes animate {
    0% {
      background-position: 0;
    }
    100% {
      background-position: 40px;
    }
  }
  
  @media only screen and (max-width: 768px) {
    .containers .box {
      width: 200px;
      height: 200px;
    }
  }
  
  @media only screen and (max-width: 480px) {
    .containers .box {
      width: 150px;
      height: 150px;
    }
  }

  
  
  /* Position the image container (needed to position the left and right arrows) */
  .container {
    position: relative;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  
  /* Add a pointer when hovering over the thumbnail images */
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: auto;
    border-radius: 3px 0 0 3px;
  }
  
 
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* Container for image text */
  

  /* Six columns side by side */
  .column {
    float: left;
    width: 16.66%;
  }
  
  /* Add a transparency effect for thumnbail images */
  .demo {
    opacity: 0.6;
    margin-left: 9px;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }
  