html, body{
  padding: 0;
  margin: 0;

  font-family: Minecraft;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  overflow: hidden;
}

body{
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAACgAgMAAADm7QMnAAAADFBMVEV3d3dOTk5OTk5OTk60BIz+AAAABHRSTlP/bytS3QghxwAAAEhJREFUeAFjZA1gQAevGVc5XPjy9z8K8Ytowd/YBf8zYIB/xGsfyhaNWjRq0ahFoxaNWkS4QhmtjwaDRaMWjVo0atGoRaP1EQDs2xO3GiLLhAAAAABJRU5ErkJggg==");
  background-color: #141D24;
}

body::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}

*{
  box-sizing: border-box;
  position: relative;
}
h1,h2,h3,h4,h5,h6{
  margin: 0;
  padding: 10px 0;
}
.wrapper{
  position: relative;
  display: flex;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.game{
  user-select: none;
  position: relative;
}
#screen{
  width: 1024px;
  height: 768px;  
}
.component{
  display: none;
  position: absolute;
  top: 0;
  z-index: 3000;
}

.component canvas{
  width: 1024px !important;
  height: 768px !important;
}

.center{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}



.disabled{
  opacity: 0.3;
  pointer-events: none;
}
.hide{
  display: none;
}
.show{
  display: block;
}
input[type="text"]{
  border: none;
  outline: 0;
  background-color: rgba(0,0,0,0.5);
  color: gray;
  padding: 10px 15px;
}
button{
  border: none;
  outline: 0;
  color: gray;
}
ul{
  margin: 0;
}
li{
  list-style: none;
}

a{
  text-decoration: none;
  color: magenta;
}
iframe{
  border: none;
}

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