
.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  */
.flexHeader {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    background-color: purple;
    color: #FFFFFF;
}
/*Menu bar*/
.flexLogo {
    flex-basis: 3em;
    border-radius: 50%;
}

img.flexLogo {
    width: 10%;
}

.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;
}
body {
    border: 0.6em dotted purple;
      font-family: "Mukta", sans-serif;
    background-color: #CB93D2;
    color: #0B0061;
    padding: 2em;
}
/*link*/
a {
padding:.3em; 
transition: .5s;
    color: #3B0202;
}

a:hover {
    background-color:#3B0202 ;
    color:#CB93D2 ;
    border-radius: 5px;
}

.tiny {
    font-size: .5em;
}


.container {
  display: flex;
  
/*   HOW BOXES ARE ALIGNED HORIZONTALLY: options include center, flex-start (aligns to the top), flex-end, and stretch  */
  align-items: center;
  
/*   HOW BOXES ARE POSITIONED HORIZONTALLY: options include center, space-around, or space-between */
  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: 25%;
  
/*   PLAY WITH THESE UNTIL YOU LIKE HOW YOUR BOXES LOOK  */
  margin: .5em;
  border: 1px solid black;
  border-radius: 10px;
  padding: 1em;
}

/* SETTING THE IMAGE WIDTH HERE INSTEAD OF IN HTML. REMOVE WIDTH="XXX%" FROM ANY HTML IMAGE TAGS INSIDE BOX DIVS */
.box img {
  max-width: 30%;
  display: block;
  margin: auto;
}


/* FORMATTING THE CITATIONS - DON'T COPY THIS IF YOU DON'T HAVE A "citation" CLASS */
.citation {
  text-align: center;
}