body {
    background-color: 	#0000FF;
    color: 	#F7F7F7;
      font-family: "Jost", sans-serif;
}

h1 {
     font-family: "Bebas Neue", sans-serif;
     font-size: 5em;
     text-align: center;
}


a {
    color: 	#F7F7F7;
}

a:hover {
    cursor: cell;
}

img {
    border: 2em ridge #F7F7F7;
}


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

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


/* SIDE TO SIDE */
/* Create the animation... */
@keyframes bounce {
   from {
      transform: translateY(0px);
   }
   to {
      transform: translateY(-20px);
   }
}

/* ...and then apply it: */
.bounce:hover {
   animation-duration: 350ms;
   animation-name: bounce;
   animation-iteration-count: infinite;
   animation-direction: alternate;
   animation-timing-function: cubic-bezier(0.2, 0.65, 0.6, 1);
}

}background-repeat: no-repeat;
