* {
    margin: 0;
}

body{
    background-color: #F0FFFF;
    color: 	#2F4F4F;
    border: 1em double #98FB98;
    padding: 1em;
    border-radius:10px ;
      font-family: "Oldenburg", serif;
     font-size: 1.5em;

    background-image: linear-gradient(to bottom right, #F0FFFF, #00FFFF);
    background-image: url('https://images.unsplash.com/photo-1518495973542-4542c06a5843?q=80&w=387&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-repeat: no-repeat;
    background-size: cover;
    
    
    
}
 main {
      background-image: linear-gradient(to bottom right, #F0FFFFcc, #00FFFFcc);
 }
img {
    border: .5em outset #5F9EA0;
    
     ;
}

h1 {
      font-family: "Limelight", sans-serif;
      font-size: 2.5em;

}

a{
    color:#6532b8  ;
}

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

.container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

/* 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;
}

.box {
  /* PLAY WITH THE FLEX-BASIS TO SET THE SIZE OF THE BOXES */
  flex-basis: 39%;
 
  
  border-radius: 10px;
 
}





/* SIDE TO SIDE */
/* Create the animation... */
@keyframes breathe {
   0% {
      transform: scale(0.5) translateY(-20px) 
   }
   100% {
      transform: scale(1) translateY(0px);
   }
}

/* ...and then apply it: */
.breathe {
   animation-duration: 500ms;
   animation-name: breathe;
   animation-iteration-count: infinite;
   animation-direction: alternate;
   animation-timing-function: ease-in-out;
   display: inline-block;
}


