@import url("https://fonts.googleapis.com/css?family=VT323");
* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  background: #000;
  overflow: hidden;
  font-family: "VT323", monospace;
  height: 100vh;
}

canvas {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 9999;
}

.loader {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #000;
  z-index: 4;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
}

.loadInner {
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  background: #2ca3ff;
}

.pong {
  display: none;
}

.pongGame {
  z-index: 1;
}

.holder {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 2;
  box-shadow: inset 0 0 10px 5px #2ca3ff;
}
.holder:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: color-dodge;
  background: #a2a2a2;
  z-index: 99999;
  pointer-events: none;
}
.holder.inGame {
  display: none;
}

.title {
  color: #2ca3ff;
  font-size: 3em;
  text-align: center;
  font-family: "VT323", monospace;
  text-shadow: 0px 0px 12px #2ca3ff;
  font-size: 11em;
  margin-bottom: 0;
}

.element-holder-input {
  margin-bottom: 1em;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
}

label {
  color: #2ca3ff;
  font-size: 3em;
  text-align: center;
  font-family: "VT323", monospace;
  text-shadow: 0px 0px 5px #2ca3ff;
  display: block;
  width: 250px;
  margin: auto;
  color: #2ca3ff;
  font-size: 4em;
  padding-bottom: 5px;
  position: relative;
}

input[type=radio]:checked + label:after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  height: 0px;
  background: #2ca3ff;
  box-shadow: 0 0 6px 5px #2ca3ff;
  bottom: -3px;
}

.button-mute {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  text-indent: -999px;
  overflow: hidden;
}
.button-mute:before {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  background-image: url(../../assets/textures/mute.png);
  top: 0;
  left: 0px;
  background-position: 0;
  background-size: auto 100%;
  bottom: 0;
  margin: auto;
}
.button-mute.selected:before {
  background-position: 50px;
}

.element-button {
  color: #2ca3ff;
  font-size: 3em;
  text-align: center;
  font-family: "VT323", monospace;
  text-shadow: 0px 0px 6px #2ca3ff;
  border: 0;
  background: transparent;
}

.button-player {
  font-size: 4em;
  display: block;
  margin: auto;
  text-align: center;
  position: relative;
}

.start .button-continue,
.start .button-restart {
  display: none;
}

.start .button-play {
  margin-right: 0;
}

.playGame .button-play {
  display: none;
}

.button-play, .button-continue, .button-restart {
  position: relative;
  font-size: 4em;
  display: inline-block;
  margin: auto;
  text-align: center;
  margin-top: 1em;
  text-transform: uppercase;
  background: #2ca3ff;
  color: #000;
  box-shadow: 0 0 10px 5px #2ca3ff;
  margin-right: 1em;
}

.menu-holder {
  width: 50%;
  margin: auto;
  padding: 1em;
  text-align: center;
  z-index: 3;
}