@font-face {
  font-family: PressStart2P;
  src: url(fonts/PressStart2P-Regular.ttf);
}

* {
  margin: 0;
  padding: 0;
}

body {
  text-align: center;
  background-color: #212121;
  font-family: PressStart2P;
  color: #4B8CC8;

  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

html, body {
  height: 100%;
}

h1 {
  padding: 50px 0;
  font-size: 50px;
}

h2 {
  padding: 10px 0;
}

.container {
  position: relative;
}

.background {
  width: 100%;
  height: 100%;
  position: relative;
}
.background::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url(assets/wallpaper.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  filter: blur(20px);
}

canvas {
  margin: 0 auto;
  display: block;
  border-radius: 10px;
}