/* styles.css */
body {
  height: 100vh;
  margin: 0;
  font-family: fudemoji, Arial, sans-serif;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

#wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100dvh;
}

#app {
  margin-inline: auto;
  height: 200px;
}

#title {
  font-size: 90px;
  margin-block: 60px;
}

#announce {
  font-size: 90px;
  margin-block: 60px;
}

#startButton {
  padding: 10px 20px;
  font-size: 50px;
  cursor: pointer;
  background: white;
  border: 1px solid;
  border-radius: 2px;
}

#countdown {
  font-size: 5rem;
}

#ehoumaki {
  width: 400px;
}

#score {
  margin-top: 20px;
  font-size: 80px;
}

.eating-animation {
  transition: width 0.5s ease;
}

@font-face {
  font-family: 'fudemoji';
  src: url(fudemoji.ttf);
}

@keyframes keypress {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.keypress-animation {
  animation: keypress 0.05s;
}

/*@keyframes crumb-animation {*/
/*  0% {*/
/*    transform: translateY(0) rotate(0);*/
/*    opacity: 1;*/
/*  }*/
/*  100% {*/
/*    transform: translateY(50px) rotate(720deg);*/
/*    opacity: 0;*/
/*  }*/
/*}*/

/*.crumb {*/
/*  position: absolute;*/
/*  background-color: #D2A679; !* ロールケーキの色に近い色 *!*/
/*  border-radius: 50%;*/
/*  animation: crumb-animation 1s forwards;*/
/*}*/
