
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100vh;
  overflow: hidden;
}

#killCount{
  position: absolute;
  top:20px;
  right:20px;
  background-color: rgba(0, 0, 0, 0.493);
  color:white;
  width:250px;
  text-align: center;
  padding-top:25px;
  padding-bottom:25px;
  font-size:64px;
  font-family: "Tiny5", sans-serif;
  display:none;
}

#centreItems{
  display:flex;
  align-items: center;
  justify-content: center;
  position:absolute;
  width:100%;
  height:100%;
  background-color:black;
}

#enterGameButton{
  height:120px;
  width:450px;
  font-size:64px;
  font-family: "Tiny5", sans-serif;
  border-radius:10px;
  cursor:pointer;
  border:none;
  background-color:rgb(40, 179, 40);
}

#controls{
  font-size:64px;
  font-family: "Tiny5", sans-serif;
  color:white;
  display:none;
}