body {
  background-color: #E0FFE0;
   background-image: linear-gradient(to right, #e3cce0, #cc68bf, #f266b3);
  
  color: #000000;
    font-family: "TikTok Sans", sans-serif;
font-size: 1em;
}

main {
 background-color: #E0FFE0ef; 
 width: 80%;
 border: 0.4em groove #E0FFE0;
 margin: auto; 
    
}

h1 {
      
      font-family: "Zalando Sans", sans-serif;
      text-align: left;
}

a {
     color: #000000;
}


img {
    border: 1em groove #9be8be;
    border-radius: 1em ;
}

@keyframes shrinking {
       0% {
      transform: scale(0.75);
   color: #fc0390 ;
           
       }
   100% {
      transform: scale(1);
   color: #3f074d;
       
   }
}


.highlight { 
    animation-duration: 3s;
   animation-name: shrinking;
   animation-iteration-count: infinite;
   animation-direction: alternate;
   animation-timing-function: ease-in-out;
   
}




.container {
  display: flex;
  align-items: flex-start;
  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: 25%;
  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: 30%;
  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  */