body {
  background-color: #eee;
}
#music {
  padding: 0;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
i {
  font-size: 80%;
}
.box span {
  font-size: 8px;
  color: #8d6841;
  cursor: default;
  font-weight: bold;
  text-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
  animation: fade 1s;
}
@keyframes fade {
  0% {
    font-size: 8px;
    opacity: 0;
  }

  25% {
    font-size: 25px;
    opacity: 1;
  }
  75% {
    font-size: 25px;
    opacity: 1;
  }
  100% {
    opacity: 0;
    font-size: 8px;
  }
}
h1 {
  color: #8d6841;
  display: flex;
  justify-content: center;
  cursor: default;
  text-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
}
#input {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  background-color: #eee;
  border: none;
  padding: 1rem;
  width: 40vw;
  height: auto;
  border-radius: 1rem;
  color: #dbcab2;
  box-shadow: 0 0.4rem #dbcab2;
  cursor: pointer;
}
#input:focus {
  outline-color: #dbcab2;
}
.box #screen {
  text-align: center;
  user-select: none;
}
.box,
.scoreStatic,
#fail,
.menu,
.choice {
  text-align: center;
  border-radius: 20px;
  background-color: rgba(219, 202, 178, 0.5);
  padding: 20px 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50vw;
  transform: translate(-50%, -50%);
}
.scoreStatic,
.menu,
.choice {
  width: 30vw;
}
#fail div {
  color: #8d6841;
  cursor: default;
  font-weight: bold;
  font-size: 25px;
  text-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
}
#score,
#count {
  color: #8d6841;
  display: inline;
  font-size: 30px;
  font-weight: bold;
  margin-left: 30px;
  margin-right: 5px;
}
ul {
  padding: 0;
}
button {
  color: #72573a;
  padding: 0.7em 1.7em;
  font-size: 20px;
  font-weight: bold;
  border-radius: 0.5em;
  background: #e8e8e8;
  border: 3px solid #e8e8e8;
  box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
  margin: 10px 20px;
}

button:hover {
  border: 3px solid white;
}

button:active {
  box-shadow: 4px 4px 12px #c5c5c5, -4px -4px 12px #ffffff;
}
li {
  list-style: none;
  color: #8d6841;
  cursor: default;
  font-weight: bold;
  font-size: 25px;
  text-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
}
