body {
    background-color:  #FF69B4;
    color: #FFFFFF;
    border: .4em double pink;
    margin: .2em;
    padding:.2em;
      font-family: "Playwrite NZ Basic", cursive;
font-size: 180%;
}

a { 
  color: #0A0A0A;
}

img {
 border:2em dashed pink;    
}

.float {
  float: right;
}

h1 {
      font-family: "Playfair Display", 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: 35%;
  margin: 1.5em;
 
  padding: 1em;
  text-align: center;
}

 .box img {
  max-width: 70%;
  display: block;
  margin: auto;
  border: none;
}

/* SIDE TO SIDE */
/* Create the animation... */
@keyframes wiggle {
   0%,
   7% {
      transform: rotateZ(0);
   }
   15% {
      transform: rotateZ(-15deg);
   }
   20% {
      transform: rotateZ(10deg);
   }
   25% {
      transform: rotateZ(-10deg);
   }
   30% {
      transform: rotateZ(6deg);
   }
   35% {
      transform: rotateZ(-4deg);
   }
   40%,
   100% {
      transform: rotateZ(0);
   }
}

/* ...and then apply it: */
.wiggle {
   animation-duration: 2s;
   animation-name: wiggle;
   animation-iteration-count: infinite;
   animation-timing-function: linear;
}


  