body {
     background-repeat: no-repeat;
  background-size: cover;
    background-color:#00A8A8;
    background-image: url('https://images.unsplash.com/photo-1480497490787-505ec076689f?q=80&w=869&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    color: #000000;
      font-family: "Vend Sans", sans-serif;
      font-size: 1.1EM;
}

main {
    background-color:#00A8A8dd ;
    width: 80%;
    margin: auto;

}

H1 {
      font-family: "UnifrakturMaguntia", cursive;
      text-align: LEFT;

}
a {
    color: 		#006400;
}

img {
    border: .5em ridge #000000;
}


@keyframes side {
   from {
      margin-left: 0%;
   }
   to {
      margin-left: 75%;
      /* 70% works because the image width is set to 30% - update your percent according to your element's width */
   }
}


.highlight {
   animation-duration: 10s;
   animation-name: side;
   animation-iteration-count: infinite;
   animation-direction: alternate;
   animation-timing-function: linear;
}





.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: 30%;
  margin: .5em;
  border-radius: 10px;
  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;
}



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



