@keyframes flicker {
    0% {
      background-position: left 0px top 0vh;
    }
    100% {
        background-position: left 0px top 199vh;
    }
}

@font-face {
    src: url("./assets/font/TnT.ttf");
    font-family: initial;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    appearance: none;
    margin:0;
}

input[type=number] {
    border: none;
    background-color: transparent;
    resize: none;
    height: 5vh;
    font-size: 2.5vw;
    /* text-align: center; */
    width: vmax;
    color: white;
    -webkit-text-stroke-color: #000000;
    -webkit-text-stroke-width: 0.11vw;
    font-weight: bold;
    font-family: "Taiko";
}

input[type=file]{
    width: 7vw;
    text-align: center;
}

button{
    width: 7vw;
    text-align: center;
    border-radius: 10px;
    font-weight: bolder;
    font-family: "Taiko";
    border-width: 0.3vw;
    width: 9vw;
    height: 7vh;
    font-size: 1.1vw;    
}

button:focus{
    background-color: #000000;
    color: white;
}

::-webkit-file-upload-button{
    border-radius: 10px;
    font-weight: bolder;
    font-family: "Taiko";/*"Caveat Brush", cursive; */
    width: 7vw;
    height: 5vh;
    font-size: 0.9vw
}

p {
    font-family: "Taiko";
    font-size: 20px;
  }

canvas {
    border: 0px solid #000000;
    background-image: url('./assets/background/tile.png');
    background-size: 20%;
    animation: flicker 120s linear infinite;
}

body {
    background-color: #aaaaaa;
    margin: 0;
    overflow: hidden;
}