body {
    background-color:#FF8FA2 ;
    color: #0F0F0F;
    border: .5em double;#000000; 
    margin: .1em;
    padding: 2em;
}

a {
      color: #000000; 
}

img {
    border: 1em dotted pink;
    
    border-radius:3em;
    font-family: "Rancho", cursive;
}

.float {
    float:right;
}


h1 {
      font-family: "Ranchers", 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 */
  flex-basis: 25%;
  margin: 1.5em;
  
  padding: 1em;
  text-align: center;
}

.box img {
  max-width: 90% ;
  display: block;
  margin: auto;
}

/* SIDE TO SIDE */
/* Create the animation... */
@keyframes breathe {
   0% {
      transform: scale(0.8) rotate(-2deg);
   }
   100% {
      transform: scale(1) rotate(2deg);
   }
}

/* ...and then apply it: */
.breathe {
   animation-duration: 3s;
   animation-name: breathe;
   animation-iteration-count: infinite;
   animation-direction: alternate;
   animation-timing-function: ease-in-out;
}
