body {
    background-color: #FFA07A     ;
    color: 	#4D004D ;
    border: 1em double #4D004D;
    border-radius: 1em;
    padding: 1em;
      font-family: "Sour Gummy", sans-serif;
    font-size: 1.1em
}

a {
 color:	#4D004D ;   
} 

img {
    border: 1em double #4D004D;
    border-radius: 1em;
}
h1 {
      font-family: "Sour Gummy", sans-serif;

}


.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 - DON'T GO OVER 45% */
  flex-basis: 44%;
  margin: .5em;
  
  border-radius: 10px;
  padding: 1em;
  
}


/* SETTING THE IMAGE WIDTH HERE INSTEAD OF IN HTML. REMOVE WIDTH="XXX%" FROM THE HTML IMAGE TAGS */
.box img {
  max-width: 70%;
  display: block;
  margin: auto;
}
/* BOUNCE */
/* Create the animation... */
@keyframes bouncing {
   from {
      transform: translateY(0px);
   }
   to {
      transform: translateY(-20px);
   }
}

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