body {
     background-repeat: no-repeat;
  background-size: cover;
    background-color:#15CC2A;
    color: #000000;
      font-family: "Indie Flower", sans-serif;
  font-family: "Indie Flower", cursive;
  font-weight: 400;
  font-style: normal;
  margin: .5em;
  padding: .5em;
}

      /*font-size: 1.1EM*/
}   

main {
    background-color:#15CC2Add ;
    width: 80%;
    margin: auto;

}

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

}

.tiny {
    font-size: 75%;
}

/*LINK*/
a {
    color:#000000;
   text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


@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: #000000;
}
/* END STARS  */

/* if you want a sticky menu, add that code to the .flexHeader rule */
.flexHeader {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    /* border: 1px solid blue; */
  background-color: #15CC2A;
  color: #000000;
}

.flexLogo {
    flex-basis: 3em;
    border-radius: 50%;
}

img.flexLogo {
    width: 15%;
}

.flexH1 {
    flex-grow: 3;

}

.flexNav {
    flex-grow: 4;
}

.flexNav a {
    font-size: 1.25em;
    padding: .5em;
    color: #FFFFFF;
}

.interiorFlex {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: right;
    /* border: 1px solid lightsalmon; */
}


* {box-sizing: border-box;}

.img-comp-container {
  position: relative;
  height: 200px; /*should be the same height as the images*/
}

.img-comp-img {
  position: absolute;
  width: auto;
  height: auto;
  overflow: hidden;
}

.img-comp-img img {
  display: block;
  vertical-align: middle;
}

.img-comp-slider {
  position: absolute;
  z-index: 9;
  cursor: circle;
  /*set the appearance of the slider:*/
  width: 40px;
  height: 40px;
  background-color: #2196F3;
  opacity: 0.7;
  border-radius: 50%;
}