* {
  font-family: 'Chewy', cursive;
  font-size: 26px;
}
header {
  box-shadow: inset 0 0 2.4em #b5a3a3;
  border-radius: 15px;
  background-color: black;
}
div {
  margin: 25px 4%;
  display: inline-block;
  padding: 5px;
  cursor: pointer;
}
button {
  margin: 1% 4%;
  height: 50px;
  width: 170px;
  font-size: 34px;
  display: inline-block;
  border-radius: 5%;
  cursor: pointer;
}
section {
  text-align: center;
}
aside {
  flex: 0 1 auto;
  flex: 0 1 auto;
  margin: 5px 10px;
  text-align: center;
}
/*footer {
  box-shadow: inset 0 0 2.4em #b5a3a3;
  border-radius: 15px;
  background-color: black;
  height: 150px;
  position: absolute;
  width: 100%;
  bottom: -1000px;
}*/
.newGame {
  width: 240px;
  height: 65px;
  background-color: yellow;
}
.difficulty {
}
img {
}
.cardImgs {
  margin: 10px;
  min-width: 190px;
  max-width: 290px;
  max-height: 290px;
  height: 290px;
  width: 275px;
  border: 2px solid black;
  border-radius: 20%;
}

.flexer {
  display: flex;
  margin: auto;
  width: 90%;
}
.gameBoard {
  border: none;
  flex: 1 1 auto;
  margin: 1rem auto;
  text-align: center;
}
.cards {
  position: relative;
  background-color: black;
  transition: 2s ease;
  z-index: 1;
}
.active .flipped {

}
.isMatch {
  opacity: 0.1;
  transition: 3s ease;
}
.diffColor {
  height: 50px;
  width: 90%;
  background-color: white;
  display: block;
  position: relative;
  top: -50px;
  z-index: -1;
  border: none;
  border-radius: 8px;
}
.timer {
  background-color: white;
  font-size: 35px;
  text-align: center;
  height: 60px;
  min-width: 70px;
  margin: 1rem auto;
      border: 5px solid red;
}
.shotClock {
  margin: auto;
}
#clock {
  background-color: white;
  border: none;
}
.moves {
  background-color: white;
  font-size: 35px;
  text-align: center;
  height: 60px;
  min-width: 70px;
  margin: 1rem auto;
  border: 5px solid red;
}
.moveCount {
    background-color: white;
    border: none;
    margin: 1px;
}
.matchCount {
  background-color: white;
  font-size: 35px;
  text-align: center;
  height: 60px;
  min-width: 70px;
  margin: 1rem auto;
  border: 5px solid red;
}
.matches {
  background-color: white;
  border: none;
  margin: 1px;
}
#easy {
  background-color: green;
}
#medium {
  background-color: orange;
}
#hard {
  background-color: red;
}
.instructions ul {
list-style: none;
}
.perspectiveLeft {
  animation-name: perspectiveLeft;
}
@keyframes perspectiveLeft {
  0% {
    transform-origin: 0 0;
    transform: perspective(800px) rotateY(0deg);
  }

  100% {
    transform-origin: 0 0;
    transform: perspective(800px) rotateY(-180deg);
  }
}


