body {
    background-color:  	#00FA9A;
    color: 	#000000;
    border:1em double #015f79 ;
    border-radius: 3em;
    padding: 1em;
    font-size: 1em;
      font-family: "Space Grotesk", sans-serif;

}

a {
    color: #1499FF;
}

img {
    border: .5em ridge #000000;
}

img{
    border-radius:15px ;
}

h1 {
      font-family: "Irish Grover", system-ui;
      text-align: center;

}

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

.box {
  /* PLAY WITH THE FLEX-BASIS TO SET THE SIZE OF THE BOXES - DON'T GO OVER 45% */
  flex-basis: 46%;
  margin: .2em;
  padding: 1em;
  text-align: center;
}

/* SETTING THE IMAGE WIDTH HERE INSTEAD OF IN HTML. REMOVE WIDTH="XXX%" FROM THE HTML IMAGE TAGS */
.box img {
  max-width: 60%;
  display: block;
  margin: auto;
}
/* SLIDE IN FROM LEFT ONCE */
/* Create the animation... */
@keyframes slide-in {
   from {
      transform: translateX(-100%);
   }
   to {
      transform: translateX(0%);
   }
}

/* ...and then apply it: */
.slide_left {
   animation-name: slide-in;
   animation-duration: 1500ms;
   display :inline-block;
}
