body {
    background-color:#003333;
    color:#9DC39D;
    font-family: "Kite One", sans-serif;
    font-size: 1.75em;
    padding: 2em;
}

h1 {
    font-family: "Oxanium", sans-serif;
    font-size: 3.5em;
}

{
  color:#9DC39D;  
}


img {
    border: 1.5em ridge #9DC39D;
}
.container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.box {
  flex-basis: 25%;
  margin: 1.5em;
  padding: 1em;
}

.box img {
  max-width: 140%;
  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 {
   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);
}
h1:hover {
    cursor: crosshair;
}

