body {
  background-color: 	#050D7A  ;
  color: #07F20B ;
   font-family: "Quantico", sans-serif;
   font-size: 1.2em;
}

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

h1 {
    font-family: "Orbitron", sans-serif;
    text-align: center;
}

a  {
    color: #07F20B;
}

img {
    border: .8em ridge #000000;
    border-radius: 3em;
}

@keyframes glow {
    0% {
      transform: scale(0.5);
   }
   100% {
      transform: scale(1);
   } 
}

.highlight {
     animation-duration: 5s;
   animation-name: glow;
   animation-iteration-count: infinite;
   animation-direction: alternate;
   animation-timing-function: ease-in-out;
}
.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: 35%;
  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: 50%;
  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  */