* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: black;
}

body #button-container {
  z-index: 10;
  position: absolute;
  height: 100vh;
  width: 100%;
  background-color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body #button-container.showButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body #button-container.hideButton {
  display: none;
}

body #button-container #start-flex {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  height: 60vh;
}

body #button-container #start-flex #device {
  font-size: 0.6em;
}

body #button-container #start-flex #btn {
  z-index: 200000;
  color: black;
  background-color: white;
  border: unset;
  padding: 10px 20px;
}

body #button-container #start-flex #btn:hover {
  cursor: pointer;
}

body #button-container #start-flex #points {
  text-align: justify;
  padding: 10px;
  background-color: lightcoral;
}

body #button-container #start-flex #points h4 {
  padding-bottom: 5px;
}

body #button-container #start-flex #points div {
  padding: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body #background {
  width: 100%;
  max-width: 1200px;
  height: 700px;
  background-size: cover;
  background-image: url("assets/img/background.jpg");
  background-size: cover;
  position: relative;
  overflow: hidden;
}

body #background #bojo {
  width: 60px;
  height: 80px;
  background-image: url("assets/img/bojo.png");
  background-size: cover;
  position: absolute;
  left: 570px;
  bottom: 30px;
  -webkit-animation-name: bojoWiggle;
          animation-name: bojoWiggle;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes bojoWiggle {
  50% {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes bojoWiggle {
  50% {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

body #background #heroes {
  width: 100%;
  height: 100%;
}

body #background #heroes .nhs {
  width: 80px;
  height: 33px;
  background-image: url("assets/img/nhs.png");
  background-size: cover;
  position: absolute;
  border: 1px solid white;
}

body #background #looRolls {
  width: 100%;
  height: 100%;
  position: absolute;
}

body #background #looRolls .looRoll {
  width: 30px;
  height: 50px;
  background-image: url("assets/img/toilet-roll.png");
  background-size: cover;
  position: absolute;
}

body #background #enemies {
  width: 100%;
  height: 100%;
  position: relative;
}

body #background #enemies .covid {
  width: 50px;
  height: 50px;
  background-image: url("assets/img/corona.png");
  background-size: cover;
  position: absolute;
}

body #score {
  height: 50px;
  font-size: 25px;
  margin-top: 10px;
  padding: 10px;
  color: white;
  background-color: lightcoral;
}

body #score span {
  font-size: 30px;
  padding: 5px 10px;
  font-weight: bold;
  background-color: white;
  color: red;
}

@media only screen and (max-width: 800px) {
  body {
    background-color: lightblue;
  }
}
/*# sourceMappingURL=style.module.css.map */