body {
    background-color:#4B0082;
    color:#B0E0E6;
    font-family: "Condiment", cursive;
    font-size: 1.5em;
    padding: 2em;
}

h1 {
    font-family: "Charm", cursive;
    font-size: 4em;
    text-align: center;
}

h1:hover {
    cursor: wait;
}

a {
        color: #B0E0E6;

}

a:hover{
    background-color: #B0E0E6;
    color: #4B0082;
    }

img {
    border: .75em ridge #B0E0E6;
    border-radius: 50px;
}


.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: .5em;
  text-align: center;
}

.box img {
  max-width: 70%;
  display: block;
  margin: auto;
}


@keyframes slide-in {
   from {
      transform: translateX(-100%);
   }
   to {
      transform: translateX(0%);
   }
}

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