.guess {
  position: relative;
  width: 80vw;
  height: 80vh;

  background-color: #167c80;
  margin: 10vh auto;
  border-radius: 3vh;
  box-shadow: 10px 5px 5px #a6a6a6;
  transition: all .3s;

  text-align: center;
  align-content: center;
}

.guess .timeCounter {
  position: absolute;
  right: 15px;
  top: 5px;

  font-weight: 600;
}

.guess .title {
  font-size: 60px;
  font-weight: 600;
  transition: all .3s;
}

.guess .beforeRemind {
  font-size: 24px;
  font-weight: 600;
  transition: all .3s;
}

.guess .remind {
  font-size: 24px;
  font-weight: 600;
  transition: all .3s;
}

.guess .input {
  height: 50px;
  width: 300px;
  transition: all .3s;

  color: #167c80;
  border-radius: 9999px;
  padding: 5px 12px 5px 20px;
  background-color: #f9f7e8;

  font-size: 40px;
  font-weight: 600;
}

.guess .confirm {
  display: block;
  height: 60px;
  line-height: 60px;
  width: 140px;
  cursor: pointer;

  margin: 10px auto;

  border: 0px;
  border-radius: 9999px;
  background-color: #f9f7e8;
  transition: all .3s;

  color: #167c80;
  font-size: 40px;
  font-weight: 600;
  font-family: "Microsoft Yahei", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
}

.guess .confirm:active {
  height: 48px;
  line-height: 48px;
  width: 112px;

  font-size: 32px;
}