body{
    margin: 0px;
    overflow: hidden;
    width: 100%;
    height:100%;
    background: url(backgound.png);
    background-size: cover;
    user-select: none;
    font-family: mcfont;
}
@font-face{
    font-family: mcfont;
    src: url("./mcFont.otf");
}
.imgdata{
    display: none;
}
html{
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}
.block,.break{
    width: 360px;
    height: 360px;
    transform: translate(-50%,0);
    position: fixed;
    left: 50%;
    top: 32px;
    image-rendering: pixelated;
    transition: .2s;

}
.break{
    opacity: 0.5;
}
.block{
    text-align: center;
    line-height: 360px;
    font-size: 32px;
    font-family: monospace;
    color: white;
}
.tool{
    image-rendering: pixelated;
    width: 128px;
    height: 128px;
    margin: 0px 32px;
    cursor: pointer;
    transform: translate(-50%,-50%);
    transition: .06s;
}

.tool:active{
    transform: translate(-50%,-50%) scale(1.5);
}
.tools{
    position: fixed;
    transform: translate(-50%,-50%);
    left: 52%;
    top: 85%;
}
.score,.strength,.level{
    font-size: 32px;
    color: white;
    font-family: mcfont;
}

.copyright{
    color: white;
    font-family: mcfont;
    font-size: 20px;
    position: fixed;
    bottom: 32px;
}
@media(max-width:480px){
    .block,.break{
        width: 256px;
        height: 256px;
        top: 200px;
    }
    .tools{
        width: 100%;
        left: 60%;
    }
    .hkey{
        display: none;
    }
    .tool{
        width: 100px;
        height: 100px;
        margin: 0 16px;
        user-select: none;
    }

}
.version{
    color: white;
    float: right;
    position: fixed;
    bottom: 32;
    right: 16;
}
.loading{
    width: 100%;
    height: 100%;
    margin: 0px;
    background: #444447;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loop{
    width: 32px;
    height: 32px;
    border-width: 1px 1px 0px 0px;
    border-color: white;
    border-style: solid;
    border-radius: 50%;
    animation: 1s loading linear infinite;
}
.hkey{
    color: white;
    position: relative;
    right: 200px;
    bottom: 48px;
    font-size: 20px;
}
@keyframes loading{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}