#overallWrapper {
  text-align: center;
  font-family: Quicksand, sans-serif;
  width: 100%;
}

#gingerWrap {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
}

#imageWrap {
  margin: 1em;
  height: 274px;
  width: 216px;
}

#dashes {
  width: 52%;
  margin: 1em;
  text-align: center;
}

#alphaWrap {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
}

#alphabetKeys {
  align-content: center;
  text-align: center;
  width: 75%;
  font-size: 3em;
  color: darkslategray;
}

#alphabetKeys span {
  cursor: pointer;
  padding: 0.15em;
}

#startButton {
  cursor: pointer;
  border: 1px solid gray;
  padding: 0.5em 1.8em;
  font-size: 1.3em;
  border-radius: 25px;
}

#resetButton {
  font-family: Quicksand, sans-serif;
  font-weight: 600;
  color: darkslategray;
  cursor: pointer;
  border: 1px solid gray;
  padding: 0.4em 1.2em;
  font-size: 1em;
  border-radius: 15px;
  margin: 1em;
}

#wordSpace {
  margin: 0 auto;
  margin-top: 3.5em;
  font-size: 2.9em;
  text-align: center;
  color: darkslategray;
}

.categoryIcon {
  margin: 1em;
  opacity: 0.8;
  cursor: pointer;
}

.categoryIcon:hover {
  opacity: 1;
}

.selectedIcon {
  opacity: 1;
  box-shadow: 0px 0px 30px 6px #526e9b;
  animation: pulse 1s;
}

.selected {
  opacity: 0.4;
}

#wordSpace.aWinnerIsYou {
  color: #487a02;
  animation: glow 0.9s infinite alternate;
  min-width: 250px;
}



#startButton {
  margin-top: 4.7em;
  font-family: Quicksand, sans-serif;
  color: darkslategray;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px -15px #9ded2d;
  }
  to {
    box-shadow: 0 0 15px 12px #87ce23;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.hidden {
  display: none;
}

.noClick {
  pointer-events: none;
}

#credit {
  color: gray;
  font-size: 0.8em;
}

@media only screen and (max-width: 750px) {
 
  #dashes {
    width: 80%;
  }
  #wordSpace, #startButton {
    margin-top: 0.8em;
  }
  #startButton {
    margin-bottom: 0.8em;
  }
  #alphabetKeys {
    font-size: 2.7em;
  }
}
@media only screen and (max-width: 480px) {
   .gingImg, #imageWrap {
    height: 185px;
    width: 146px;
  }
  #alphabetKeys {
    font-size: 2.4em;
    width: 95%;
  }
  .categoryIcon {
    height: 43px;
    width: 43px;
    margin: 0.5em;
  }


}
