body {
    background-color:#410070;
    color: #FFFFFF;
    font-family: "Noto Sans Syriac", sans-serif;
    font-size: 3ems;
    padding: 1ems;
}

h1 {
    font-family: "Rubik", sans-serif;
    font-size: 5ems;
    text-align: center;
    cursor: -webkit-grab; cursor: grab;
}

a {
        color: #FFFFFF;
        padding:.5ems;
}

a:hover {
    background-color: #FFFFFF;
    color: #410070 ;
    border-radius: 10px ;
}


img {
    border: 1em outset purple;
    border-radius: 7em;
}

.container {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-wrap: wrap;
}

.box {
 
  flex-basis: 41%;
  margin: 1.5em;
  padding: 1.5em;
  text text-align: center;
}

.box img {
  max-width: 30%;
  display: block;
  margin: auto;
}


@keyframes slide-in {
   from {
      transform: translateX(-100%);
   }
   to {
      transform: translateX(0%);
   }
}

ul (
center;
)

/* ...and then apply it: */
.slide_left {
   animation-name: slide-in;
   animation-duration: 1500ms;
}

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