body {
    background-color: 	#E4AFE4;
    color: 	#4B0082;
    font-family: "Open Sans", sans-serif;
    padding: 1em;
}

h1 {
    font-family: "Playfair Display", serif;
    font-size: 3em;
    text-align:center ;
}

a {
    color: 	#4B0082;
}


img {
    border: 1em solid blue;
}


.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;
  border-radius: 10px;
  padding: 1em;
}


.box img {
  max-width: 45%;
  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;
}

a{
    color:#4B008;
    padding: .5em;
}

h1:hover{
    cursor: wait;
}

a:hover{
    background-color:#4B0082 ;
    color:#E4AFE4 ;
    border-radius:15px;
cursor: pointer
}
