body {
    margin: 0;
    position: relative;
    min-height: 100vh;
    background-color: 000000;
}

#container {
    position: absolute;
    overflow: hidden;
}

.health {
  display: flex;
  position: fixed;
  right: 0;
  z-index: 2;
  margin-right: 15px;
}

.health__title {
  color: white;
  
}

.health__quanity {
  color: white;
}

.score {
  display: flex;
  position: fixed;
  z-index: 2;
}

.score__title{
  color: white;
  margin-left: 15px;
}

.score__quanity {
  color: white;
}

.loading {
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: aliceblue;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

.loading_opened {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.game-over {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: aliceblue;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 3;
}

.game-over_opened {
  opacity: .95;
  visibility: visible;
  transition: all 0.3s ease;
}

.game-over__title {
  color: rgb(255, 0, 0);
  font-size: 30px;
  font-style: italic;
}

.game-over__total-score {
  color: greenyellow;
  font-size: 24px;
  font-style: 800;
}

.game-over__resume {
  align-items: center;
  background-clip: padding-box;
  background-color: #2700a6;
  border: 1px solid transparent;
  border-radius: .25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: calc(.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
  z-index: 3;
}

.game-over__resume:hover,
.game-over__resume:focus {
  background-color: #290082;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.game-over__resume:hover {
  transform: translateY(-1px);
}

.game-over__resume:active {
  background-color: #54007b;
  box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
  transform: translateY(0);
}

.navigator__left {
  width: 50%;
  height: 100%;
  position: absolute;
  display: flex;
  left: 0;
  background-color: rgba(0, 255, 123, 0.0);
  border: 0;
  opacity: 1;
  z-index: 2;
}

.navigator__right {
  width: 50%;
  height: 100%;
  position: absolute;
  display: flex;
  right: 0;
  background-color: rgba(255, 43, 251, 0.0);
  border: 0;
  opacity: 1;
  z-index: 2;
}

.navigator {
  
}