*{touch-action: none;}
body {
    overflow: hidden;
    position: relative;
}
/*Interface*/
.edDuckGameDiv {
    position:relative;
    width:100vw;
}
.edDuckGameDiv .edDuckGameBg {
    width:100vw;
    overflow:hidden;
    position:relative;
    white-space:nowrap;
    border:1px solid #888;
}
.edDuckGameDiv .edDuckGameMain, .edDuckGameDiv .edDuckGameMainDeath {
    position: fixed;
    top: 550px;
    left: 50px;
}
.edDuckGameDiv .edDuckGameMainDeath {display: none;}
.edDuckGameDiv .edDuckGameHP {
    position: fixed;
    top: 50px;
    left: 50px;
}
.edDuckGameDiv .edDuckGameHPBar {
    position: fixed;
    top: 68px;
    left: 145px;
    width: 487px;
    height: 52px;
    background-color:#00ff00;
}
.edDuckGameDiv .btn {
    position: fixed;
}
.edDuckGameDiv .btn-up {
    top: 550px;
}
.edDuckGameDiv .btn-down {
    top: 650px;
}

/*Game Items*/
.edDuckGameDiv .edDuckGameBg .edDuckGameItem .obstacle, .edDuckGameDiv .edDuckGameBg .edDuckGameItem .virus, .edDuckGameDiv .edDuckGameBg .edDuckGameItem .explode{
    display: none;
    position: absolute;
}

/*Boss Related*/
.edDuckGameDiv .edDuckGameBg .edDuckGameItem .edDuckGameBoss {
    display: none;
    position:fixed;
    top: 50px;
}
.edDuckGameDiv .edDuckGameBg .edDuckGameItem .attack {
    display: none;
    position: absolute;
    top: 100px;
}

@media only screen and (max-width: 700px) {
    .edDuckGameDiv .btn {
        display: block;
    }
}