body {
  background: url('assets/kirbybg.jpg') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
  font-family: 'Press Start 2P', cursive; 
  color: white;
  text-align: center;
}

.gamebox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 100px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); 
  border-radius: 20px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.sprite {
  width: 120px;
  height: auto;
}

.game {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}


#message {
  font-size: 2rem;
  margin-bottom: 20px;
}

button {
  padding: 10px 20px;
  font-size: 1.2rem;
  cursor: pointer;
}
.bar-container {
  position: relative;
  width: 300px;
  height: 20px;
  background-color: #ddd;
  margin: 20px auto;
  border-radius: 10px;
  overflow: hidden;
}

#reactionBar {
  height: 100%;
  width: 0%;
  background-color: #6a5acd;
  transition: width 0s;
}

.mark {
  position: absolute;
  top: -5px;
  width: 2px;
  height: 30px;
  background-color: red;
  display: none;
}
