body {
    background-color:#FFE4E1;
     background-image: url(https://unsplash.com/photos/multicolored-dog-bone-toys-w6elADh_jww);
    color: #000000;
    font-family: "Lexend", sans-serif;
font-size:; 1em;
}

main {
    background-color:#FFE4E1;
    width: 80%;
    margin:auto;
}


h1 {
      font-family: "Lexend", sans-serif;
      text-align: left

}

a {
    color: #000000;
}



img {
    border: .5em solid black;
}

@keyframes bounce {
       from {
      transform: translateY(0px);
   }
   to {
      transform: translateY(-20px);
   }
}

.highlight  { animation-duration: 350ms;
   animation-name: bounce;
   animation-iteration-count: infinite;
   animation-direction: alternate;
   animation-timing-function: cubic-bezier(0.2, 0.65, 0.6, 1);
}
    
    .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 - DON'T GO OVER 45% */
  flex-basis: 30%;
  margin: .5em;
  padding: 1em;
}

/* SETTING THE IMAGE WIDTH HERE INSTEAD OF IN HTML. REMOVE WIDTH="XXX%" FROM THE HTML IMAGE TAGS */
.box img {
  max-width: 80%;
  display: block;
  margin: auto;
}


/* FORMATTING THE CITATIONS - DON'T COPY THIS IF YOU DON'T HAVE A "citation" CLASS */
.citation {
  text-align: center;
}

/* STARS  */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.star-rating input {
  display: none;
}
.star-rating label {
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: #ffca08;
}
/* END STARS  */
