body {
    background-color: #ffa1c7;
    background-image: url('https://images.unsplash.com/photo-1588097257570-59b6f7360bfb?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') ;
    background-repeat:no-repeat ;
    background-size:cover ;
    color: #ffffff;
    border: 1em dotted hotpink;
    padding: 2em;
    
      font-family: "Story Script", sans-serif;

}

main{
     background-color: #ffa1c7cc;
}


img {
    border: 2em solid hotpink ;
    border-radius: 20px;
}

h1 {
     font-family: "Delius", cursive;
     font-size: 3em;
     text-align: center;
      background-image: linear-gradient(to right,violet,lightpink,hotpink);
      text-shadow: 3px 3px 2px black;
}




a {
    color: #550C25 ;
}
.container {
  display: flex;
  align-items: flex-start ;
  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: 90%;
  display: block;
  margin: auto;
}

.box {
  /* PLAY WITH THE FLEX-BASIS TO SET THE SIZE OF THE BOXES */
  flex-basis: 40%;
  /*margin: 1.5em;*/
  /*border: 1px solid black;*/
  border-radius: 10px;
  padding: 1em;
}
@keyframes breathe {
   0% {
      transform: scale(0.5);
   }
   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;
   display: inline-block;
}



