    body{ 
        /*background-image: radial-gradient(lightblue 5%, lightpink 15%, #F0F8FF 60%);*/
        background-image: url('https://images.unsplash.com/photo-1707305639519-a59e2ff514a5?q=80&w=1032&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
        background-repeat: no-repeat;
        background-size: cover;
        text-shadow: 4px 4px 3px lightpink;
        background-color: #F0F8FF;
        color: #000000;
        padding: 1em;
    }
    
    main {background-image: radial-gradient(lightblue 5%, lightpink 15%, #F0F8FF 60%);
        
    }
    
    
    img {
        border: 1em solid #a5d0d6; 
        border-radius: 20PX;
         font-family: "Playfair Display", serif;
    }
    
    h1 {
        font-family: "Libre Baskerville", serif;
        text-align: center;
    }
    
    a {
        color:#753561 ;
    }
    .container {
      display: flex;
      align-items: center;
      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: 45%;
      display: block;
      margin: auto;
    }
    
    .box {
      /* PLAY WITH THE FLEX-BASIS TO SET THE SIZE OF THE BOXES */
      flex-basis: 45%;
      
     
      border-radius: 15px;
      padding: 1em;
    }
    
    
    
    
    
    
    /* 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;
   display: inline-block;
}
   /* 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;
   display: inline-block;
}

