body {
  margin: 0;
  padding: 0;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

@font-face {
  font-family: "byekan";
  src: url("../fonts/Yekan.ttf");
}
/* main & main_content */
.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #367231;
  height: 100vh;
}
.main .content {
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  width: 80%;
  height: 80%;
  border: 1px solid #6b6b6b;
}
.main .blackDiv {
  background-color: black;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  opacity: 0.9;
  visibility: hidden;
}
.main .blackDivVizible {
  visibility: visible;
}

/* ------------------------ */
/* modalBox */
/* ------------------------ */
.modalBox {
  background-color: lightblue;
  width: 400px;
  height: 200px;
  position: absolute;
  border: 1px solid #000;
  text-align: center;
  font-family: "byekan";
  z-index: 3;
  top: -300px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: 0.5s all;
}

.modalBoxSlideDown {
  top: 100px;
}

/* ------------------------ */
/* particle */
/* ------------------------ */
.particle {
  background-color: red;
  border-radius: 50%;
  position: absolute;
  top: -10%;
  box-sizing: border-box;
}

/* ------------------------ */
/* listOfScores */
/* ------------------------ */
.listOfScores {
  font-family: Georgia, "Times New Roman", Times, serif;
  background-color: lightblue;
  width: 200px;
  height: 200px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  top: 0px;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #000;
  box-shadow: -4px 10px 6px 2px #908e8e;
  overflow: auto;
  text-align: center;
  display: none;
}
.listOfScores span {
  background-color: #fff;
  display: inline-block;
  margin-bottom: 10px;
  padding: 2px 20px;
}
.listOfScores .slideUp {
  animation: slideUp 1s 1;
}

.listOfScores-show {
  display: block;
}

/* ------------------------ */
/* sec01 */
/* ------------------------ */
.sec1 {
  width: 100%;
  display: flex;
  align-items: center;
  height: 20%;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 40px;
  box-sizing: border-box;
  min-height: 100px;
}
.sec1 h4 {
  font-size: 20px;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #979797;
}
.sec1 button {
  background-color: lightgray;
  transition: all 0.1s;
  padding: 20px;
  color: #4d4c4c;
  font-size: 20px;
}
.sec1 button:hover {
  transform: translateY(-2px) scale(1.03);
}

/* ------------------------ */
/* sec02 */
/* ------------------------ */
.sec2 {
  width: 100%;
  display: flex;
  align-items: center;
  height: 20%;
  min-height: 100px;
  flex-direction: row;
  justify-content: space-around;
}
.sec2 .header-name-game {
  /* background-color: lightcoral; */
  border: 1px solid #000;
  padding: 10px 50px;
  display: inline-block;
  width: 80%;
  text-align: center;
  text-transform: capitalize;
  font-size: 50px;
}

/* ------------------------ */
/* sec03 */
/* ------------------------ */
.sec3 {
  width: 100%;
  display: flex;
  align-items: center;
  height: 20%;
  min-height: 100px;
  align-items: center;
  justify-content: center;
}
.sec3 .divider {
  background-color: #000;
  width: 100%;
  height: 3px;
}
.sec3 .showBox {
  /* background-color: yellow; */
  position: absolute;
  padding: 30px 80px;
  border: 1px solid #000;
  background-color: #fff;
}
.sec3 .showBox span {
  font-size: 40px;
}

/* ------------------------ */
/* sec04 */
/* ------------------------ */
.sec4 {
  width: 100%;
  display: flex;
  align-items: center;
  height: 40%;
  min-height: 200px;
  flex-direction: row;
  flex-wrap: wrap;
}
.sec4 .item {
  /* background-color: lightsalmon; */
  width: 50%;
  height: 50%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec4 .inputNumber input {
  height: 50px;
  width: 80px;
  font-size: 30px;
  text-align: center;
}
.sec4 .showStatus span {
  font-size: 30px;
  /* background-color: rgb(182, 182, 182); */
  color: #f85252;
  padding: 10px 30px;
  border-radius: 10px;
}
.sec4 .score {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sec4 .score div {
  text-align: center;
  width: 300px;
  border: 1px solid #000;
}
.sec4 .score .timeOfChoose {
  background-color: #ff6b6b;
  font-size: 20px;
  margin-bottom: 10px;
}
.sec4 .score .timeOfChoose span {
  display: inline-block;
}
.sec4 .score .newScore {
  background-color: #88daf8;
  font-size: 20px;
  margin-bottom: 10px;
}
.sec4 .score .newScore span {
  display: inline-block;
}
.sec4 .score .animated {
  animation: moveSpan 0.5s;
  animation-iteration-count: 1;
}
.sec4 .score .animated2 {
  animation: moveSpan2 0.5s;
  animation-iteration-count: 1;
}
.sec4 .score .animatedWin {
  animation: moveSpan3 0.5s;
  animation-iteration-count: 1;
}
.sec4 .score .hightScore {
  background-color: yellow;
  font-size: 20px;
}
.sec4 .checkBtn button {
  background-color: #94f794;
  padding: 20px;
  color: #4d4c4c;
  font-size: 20px;
}

@keyframes moveSpan {
  0% {
    transform: translateY(30px) scale(0);
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
}
@keyframes moveSpan2 {
  0% {
    transform: translateY(30px) scale(0);
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
}
@keyframes moveSpan3 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.5);
    opacity: 0;
  }
  70% {
    transform: scale(1);
  }
  90% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
}

/*# sourceMappingURL=output.css.map */
