body {
    background-color:#6495ED;
     background-image: linear-gradient(to right, Blue, Pink);
    color: #000000 ;
    font-family: "Libre Baskerville", serif;
    font-size:1em;
}

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

h1 {
      font-family: "Namdhinggo", serif;
      text-align:left;
}



a {
    color: #4B0082;
}

img {
    border: 0.5em groove #FF69B4;
    border-radius: 100%;
}

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

 .highlight {
   animation-duration: 1s;
   animation-name: bounce;
   animation-iteration-count: 2;
   animation-direction: alternate;
   animation-timing-function: cubic-bezier(0.2, 0.65, 0.6, 1);
}
.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: 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  */




















