@font-face {
  font-family: gameFont;
  src: url(gamer.ttf);
}

* {
  padding: 0;
  margin: 0;
  font-weight: 800 !important;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
}

#canvas {
  position: absolute;
  background-image: url(../img/background1.png);
  background-size: cover;
  height: 100vh;
}

#canvas:hover {
  cursor: crosshair;
  color: rgba(18, 125, 151, 0.65);
}

#menu-screen {
  height: 100vh;
  position: relative;
  background-color: rgba(100, 100, 100, 0.6);
  width: 100vw;
  text-align: center;
  font-family: gameFont;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-flow: column;
}

#menu-screen span {
  font-size: inherit;
}

#main-title {
  width: 80%;
  user-select: none;
}

#buttons-container {
  width: 100%;
  display: flex;
  flex-flow: row;
  justify-content: space-around;
}

#buttons-container div {
  font-size: inherit;
  padding-bottom: 30px;
  user-select: none;
  caret-color: rgba(0, 0, 0, 0);
}

#buttons-container div:hover {
  color: rgb(8, 214, 228);
  cursor: pointer;
}
