body {
    background-color: #A4CADA;
    color: #611D14;
    border: .25em dotted; maroon;
    margin: .5em;
    padding: .6em;
    font-family: "Share Tech", sans-serif;
    font-size: 150%;

}

a {
       color: #000000;
}

img {
   border: .20em dashed #611D14;
   border-radius: 30px;
}

.float{
    float: left;
}

h1 {
      font-family: "Bitcount Single", 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 */
  flex-basis: 25%;
  margin: 1.5em;
  border: 1px solid black;
  border-radius: 10px;
  padding: 1em;
}

.box img {
  max-width: 80%;
  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;\
   display: inline-block;
}










