body {
    background-color: 	#66CDAA ;
    color: 	#000000;
     font-family: "Lexend", sans-serif;
     font-size: 1em;
}


main {
    
    background-color: #66CDAA ;
    border: .7em ridge #020cc2 ;
    margin: auto;
}





h1 {
     font-family: "Jaini", system-ui;
     text-align: left;
}



a {
    color: #000000;
}


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

.container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  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;
  border: 1px solid black;
  border-radius: 10px;
  padding: .5em;
}

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


.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  */







