body {
    background-color: 	#B0E0E6;
    color: 	#6B0099;
    font-family: "Zain", sans-serif;
    font-size: 1.2em;
    background-image: linear-gradient(to right ,#6B0099,blue,blue,#6B0099,blue,indigo,blue); 
}

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

h1 {
    font-family: "Atma", system-ui;
    text-align: center;
}


a {
    color: #6B0099;
    
}

img {
    border: .5em groove purple;
    border-radius: 2em;
}

@keyframes slide-in-left {
       from {
      transform: translateX(-100%);
   }
   to {
      transform: translateX(0%);
   }
}


.left {
 animation: slide-in-left 1900ms;
}




@keyframes slide-in {
       from {
      transform: translateX(100%);
   }
   to {
      transform: translateX(0%);
   }
}


.right {
 animation: slide-in 1700ms;   
}


.container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.box {
  /* PLAY WITH THE FLEX-BASIS TO SET THE SIZE OF THE BOXES - DON'T GO OVER 45% */
  flex-basis: 35%;
  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: 90%;
  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: #BA55D3;
}
/* END STARS  */