body {
    background-color:	#165030 ;
    color: #B9EEB9 ;
     font-family: "Playpen Sans", cursive;
     font-size :1.4em ;
background-image: url('https://openverse.org/image/a6b1ad99-7e79-4134-8bfa-d0b0be8e57b0?q=Turtles&p=13');
}




main {
    background-color: #165030;
    width:  80%;
}


H1 {
    font-family: "Young Serif", serif;
    /*font-size 2.5em;*/
    text-align:center ;
}

a {
    color: #B9EEB9;
}

img {
    border:2em groove #B9EEB9 ;
    border-radius:3em ;
}

.highlight {
   animation: slide-in 1500ms;
}
@keyframes slide-in {
   from {
      transform: translateX(-100%);
   }
   to {
      transform: translateX(0%);
   }
}

.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: 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: 70%;
  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  */