body {
    background-color:#0000FF ;
    color:#F5F5F5 ;
    border: .5em double #015F79;
    border-radius: 3em;
      font-family: "EB Garamond", serif;
    font-size: 125%;
    margin: 1em;
    padding: 2em;
}

a:hover {
     background-color: #0000FF;
     color: #F5F5F5;
     text-decoration: underline;
}


a {
    color:#C3F1FE ;   
}   

img {
  border: .5em groove #290C79;
  margin: 1em;
  border-radius: 20%;
}

.float {
  float: right;
}

h1 {
    font-family: "Dynalight", cursive;
    text-align: center;
    background-image: linear-gradient(right,blue,red);
    text-shadow: 3px 3px 2px black;

}
.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: 41%;
  margin: 1.5em;
  
  padding: 1em;
}

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

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

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