body {  
    background-color: #FFA07A;
    color: #442208;
     font-family: "Comfortaa", Sans-Serif;
     font-size: 1.5em;
     border: 5px solid black #442208;
     Padding: 2em;
     margin: 2em;
}
        
a {
    color: #442208; 
    padding: .2em;
}

.small {
    font-size: .5em;
} 

a:hover {
    background-color: #442208;
    color: #FFA07A;
    border-radius: 10px;
}
h1 {
           font-size: 70px;
           text-align: center;
           font-family: "Comfortaa", sans-serif;
           background-image: linear-gradient(to right, red, yellow);
                                       );
           border-radius: 1em;
           padding: .5em;
           text-shadow: 0px 3px 2px white;
       } 
       
 img {
            border: 5px solid black;
            border-radius: 2em;
        }
        
        .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: 25%;
  margin: .5em;
  padding: 1em;
}

/* SETTING THE IMAGE WIDTH HERE INSTEAD OF IN HTML. REMOVE WIDTH="XXX%" FROM THE HTML IMAGE TAGS */
.box img {
  max-width: 90%;
  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: 753ms;
   animation-name: bouncing;
   animation-iteration-count: infinite;
   animation-direction: alternate;
   animation-timing-function: cubic-bezier(0.2, 0.65, 0.6, 1);
   display: inline-block;
}
