body {
  background-color:	#BDBDBD ;
  color: 	#002E00 ;
  font-family: "Merriweather", serif;
  padding: 1em;
}

h1 {
      font-family: "Special Gothic Condensed One", sans-serif;
     font-size:2.5 ;
     text-align: center;
}

h1 :hover
{cursor: wait;}

}

a {
  color: 	#002E00    
}

img {
    border: 1em groove #002E00;
} 

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.box {
  flex-basis: 30%;
  margin: 1.5em;
  border: 0px solid black;
  border-radius: 0px;
  padding: 1em;
}

.box img {
  max-width: 80%;
  display: block;
  margin: auto;
}
/* SLIDE IN FROM LEFT ONCE */
/* Create the animation... */
@keyframes slide-in {
   from {
      transform: translateX(-100%);
   }
   to {
      transform: translateX(50%);
   }
}

/* ...and then apply it: */
.slide_left {
   animation-name: slide-in;
   animation-duration: 1500ms;
   animation-fill-mode: forwards;
}

