body {
     background-color: 	#F8C3C3;
    color: #003D24;
    border: 2em double limeGreen;
    margin: 2em;
    padding: 2em;
      font-family: "Gluten", cursive;
font-size: 175%;
}

a {
    color: #003D24;

}

img {
  border: 2em dashed limeGreen;
  border-radius: 50%;
}

.float {
  float:right;
}

h1 {
    font-family: "Modak", system-ui;
text-align: center;
font-weight: normal;
}

.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;
}

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


/* SIDE TO SIDE */
/* Create the animation... */
@keyframes breathe {
   0% {
      transform: scale(0.25);
   }
   100% {
      transform: scale(1);
   }
}

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

