body {
    background-color:	#FFB6C1;
    padding: 2em;
      Color:	#000000;
}


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

a:hover {
     background-color:#000000	;
      Color:#FFB6C1;
      border-radius: 2em;
}

a{
 COLOR:#0D25D3;}
 
   
    img {
        border: .5em solid blue;
        border-radius: 2em;
    }
        h1 {
            font-size: 5em;
            text-align:center;
            font-family: "Calligraffitti", cursive ;
            /*background-image: radial-gradient(#900E60, #0B1337,#3D5115);*/
            
            background-image: linear-gradient(to right,blue,purple,lightgreen);
            
             border-radius: 2em;
             padding: .5em;
             text-shadow:0px 3px 2px blue;
            
        }
        
        .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
border: 1PX SOLID blue;
}

.box {
  /* PLAY WITH THE FLEX-BASIS TO SET THE SIZE OF THE BOXES - DON'T GO OVER 45% */
  flex-basis: 42%;
  margin: .5em;
  border: 1px solid black;
  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: 80%;
  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:800ms;
   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;
}





    
    