body {
  font-family: "Poppins", sans-serif;
  background-color: #0a0a22;
  overflow: hidden;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.container-all {
  width: 95vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#game {
  position: relative;
  width: 90%;
  max-width: 500px;
  max-height: 400px;
  background-color: #ffffff;
  color: #ffffff;
  padding: 15px 10px;
  border-radius: 0.5rem;
}

#text {
  background-color: #0a0a23;
  color: #ffffff;
  padding: 10px 15px;
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  text-align: center;
}

#controls,
#stats {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0a0a23;
  padding: 5px;
  color: #0a0a23;}

#stats {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
  
.stat {
  padding-right: 35px;
}

#controls {
  border-top: none;
}

button {
  cursor: pointer;
  width: 20%;
  height: max-content;
  color: #0a0a23;
  font-size: 15px;
  font-weight: 400;
  background-color: #f1be73cd;
  background-image: linear-gradient(#fecc4c, #ffac33);
  border: 3px solid #ffbb55;
  border-radius: 10px;
  margin-right: 15px;
}

#monsterStats {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid #0a0a23;
  padding: 5px;
  color: #ffffff;
  background-color: #c70d0d;
}
  
/* RESPONSIVE WITH MEDIA */
@media only screen and (max-width: 400px) {
  body {
    font-size: 14px;
  }

  #controls, #stats {
    padding: 0;
  }

  #stats {
    height: 30px;
  }

  #controls {
    height: 50px;
  }

  .stat {
    margin: 0 15px;
    padding-right: 0;
  }

  button {
    font-size: 14px;
    width: 27%;
    height: 80%;
    margin: 2px 3px;
  }
}