* {
  box-sizing: border-box;
}

body {
  background-color: black;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}

.box_infos {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.info_value {
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
}

.box_infos {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.box_flex-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.values {
  font-size: 1.3rem;
  color: white;
}

.canvas_button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

main {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

#canvas {
  background-color: rgb(199, 199, 199);
  border-radius: 10px;
}

#buttonGame {
  width: 200px;
  height: 60px;
  border: solid 1px transparent;
  border-radius: 10px;
  outline: none;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: ease-in 0.2s;
}

#buttonGame:hover {
  background-color: blueviolet;
  color: white;
}

.buttonHidden {
  opacity: 0;
  cursor: auto !important;
}

.enemyControl {
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  border: solid 1px black;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: ease-in 0.2s;
}

.enemyControl:hover {
  background-color: #016863;
  color: white;
}

#restart {
  text-align: center;
  width: 130px;
  height: 42px;
  margin-top: 2rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 10px;
  border: solid 1px black;
  transition: ease-in 0.2s;
}

#restart:hover {
  background-color: #016863;
  color: white;
}
