body {
        background-color: 	#E0FFFF;
    color: #000000;
      font-family: "Courgette", cursive;
      font-size: 1.2em;
        background-image: linear-gradient(to bottom right,#E0FFFF, #09997A );
}


main{
    background-color: #E0FFFF10;
    width: 100%;
    border: 0.5em ridge #6DCF6D;
    margin:auto;
}

h1 {
     font-family: "Comfortaa", sans-serif;
     font-size: 2.8em;
     text-align: center;
}

a {
    color: #000000;
}

img {
    border: 1em groove	#6DCF6D ;
    border-radius: 2em;
}

@keyframes wiggle {
      0%,
   7% {
      transform: rotateZ(0);
   }
      15% {
      transform: rotateZ(-15deg);
   }
   20% {
      transform: rotateZ(10deg);
   }
   25% {
      transform: rotateZ(-10deg);
   }
   30% {
      transform: rotateZ(6deg);
   }
   35% {
      transform: rotateZ(-4deg);
   }
   40%,
   100% {
      transform: rotateZ(0);
   }
}

/* ...and then apply it: */


.banana {
   animation-duration: 2s;
   animation-name: wiggle;
   animation-iteration-count: infinite;
   animation-timing-function: linear;
    
}
.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: 41%;
  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: 85%;
  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  */