body {
    background-color:#FFFF00;
    color:#000000;
    border: .5em double red;
    margin: 1em;
    padding: 2em;
font-family: "Oswald",Sans-Serif;
font-size: 125%;

}

a {
      color:#000000;
  
}   

img {
    border: 1em dashed red;
    border-radius:20px;
}

.float {
  float: right;  
}


h1 {
     font-family: "Bungee", sans-serif;
 
}

a:hover {background-color:#000000#FFFF00;
    color:#000000; 
}


.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 */
  flex-basis: 40%;
  margin: 1.5em;
 
  padding: 1em;
}

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

/* ...and then apply it: */
.slide_left_forever {
   animation-name: slide-in;
   animation-duration: 1500ms;
   animation-iteration-count: infinite;
}
    