* {
  font-family: Arial, sans-serif !important;
}

html {
  background-color: #BEC7BD;
}

body {
  position: relative;
  color: #4a4a4a;
}

ul, li, h1 {
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: bold;
  text-align: center;
}

.ball {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #808080;
  border-radius: 50%;
  top: 30px;
  left: 300px;
}

.controls {
  position: absolute;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  height: 80px;
  width: 220px;
  top: 220px;
  line-height: 40px;
  color: grey;
  font-size: 12px;
  font-weight: bold;
  border: solid lightGrey 2px;
  border-radius: 8px;
}
.controls div {
  min-width: 33%;
  flex-grow: 1;
  max-width: 38%;
}
.controls :first-child {
  position: relative;
  left: 2%;
}
.controls code {
  color: black;
  font-size: 12px;
  font-weight: bold;
}
.controls.player1 {
  left: -40%;
}
.controls.player2 {
  right: -40%;
}
@media (max-width: 1180px) {
  .controls {
    opacity: 0.5;
  }
  .controls.player1 {
    left: 5%;
    top: 173px;
  }
  .controls.player2 {
    right: 5%;
    top: 173px;
  }
}

.scoreboard {
  position: absolute;
  height: 130px;
  width: 130px;
  border: solid 8px black;
  border-radius: 3px;
  line-height: 25px;
  top: 40px;
}
.scoreboard.one {
  left: -34%;
  background: #00c3e3;
}
.scoreboard.two {
  right: -34%;
  background: #ff4554;
}
@media (max-width: 1180px) {
  .scoreboard {
    opacity: 0.2;
    top: 0;
  }
  .scoreboard.one {
    left: 10%;
  }
  .scoreboard.two {
    right: 10%;
  }
}
.scoreboard h1 {
  font-size: 28px;
  line-height: 70px;
}
.scoreboard ul {
  font-size: 18px;
}

.border {
  position: relative;
  margin: 60px auto;
  height: 480px;
  width: 640px;
  border: solid 20px black;
  border-radius: 3px;
}

main {
  position: relative;
  margin: auto;
  height: 480px;
  width: 640px;
  overflow: hidden;
}

.platform {
  position: absolute;
  height: 20px;
  width: 100px;
  background: black;
}

.player {
  position: absolute;
  width: 28px;
  height: 60px;
  top: 420px;
}
.player .visor {
  width: 24px;
  height: 14px;
  background-color: black;
  position: absolute;
  top: 4px;
}
.player .gun {
  position: absolute;
  width: 18px;
  height: 5px;
  background-color: black;
  top: 21px;
}
.player .toast {
  position: relative;
  bottom: 20px;
  right: 13px;
  opacity: 0.6;
}
.player.one {
  left: 15px;
  border-radius: 2px 15px 0 0;
  background: #00c3e3;
}
.player.one .visor {
  left: 3.6px;
  border-radius: 2px 10px 0 0;
}
.player.one .gun {
  left: 20px;
}
.player.two {
  left: 597px;
  border-radius: 15px 2px 0 0;
  background: #ff4554;
}
.player.two .visor {
  border-radius: 10px 2px 0 0;
}
.player.two .gun {
  left: -9px;
}

.laser {
  background: #00ff00;
  width: 40px;
  height: 4px;
  position: absolute;
  z-index: -1;
}

.modal {
  width: 340px;
  left: 50%;
  top: 27%;
  transform: translate(-50%, -50%);
  display: none;
  position: fixed;
  background: white;
  border: solid black 4px;
  border-radius: 6px;
  text-align: center;
}
.modal button {
  margin: 1rem;
  text-align: center;
  padding: 1rem;
  background-color: grey;
  border: 0;
  border-radius: 6px;
  text-decoration: none;
  outline: none;
  font-size: 14px;
  font-weight: bold;
}

/*# sourceMappingURL=style.css.map */
