    body {
        background-color: 	#A60808 ;
        color: 	#FAFA0A;
                border:3em double #FAFA0A

                padding: 3em;
                  font-family: "Audiowide", sans-serif;


    }
    
    a {
        color: #FAFA0A;
    }
    
    a {
        color:#FAFA0A;
    }
    
    img {
        border: 1em groove #FAFA0A;
    }
    
    h1 {
          font-family: "Pixelify Sans", sans-serif;
          font-size: 1em;

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

/* SETTING THE IMAGE WIDTH HERE INSTEAD OF IN HTML. REMOVE WIDTH="XXX%" FROM THE HTML IMAGE TAGS */
.box img {
  max-width: 30%;
  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);
}




    
    
    
    
    
    
    