body {
    position: absolute;
    width: 100vw;
    height: 100vh;
    margin: 0;
    background: white;
    font-size: 16px;
}

input {
    font-size: 16px;
    width: 0vw;
    padding: 0px;
    border-width: 0px;
}

#gameContainer {
    position: absolute;
    width: 100vw;
    height: 100vh;
    margin: 0;
    background: white;
    z-index: 0;
}

#mc_embed_signup {
    position: absolute;
    left: 50%;
    top: 55%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 5;
}

canvas {
    position: absolute;
    width: 100vw;
    height: 100vh;
    margin: 0;
    background: white;
}

.logo, .progress {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.logo {
    background: url('img/progressLogo.gif') no-repeat center / contain;
    width: 130px;
    height: 130px;
}

.progress {
    height: 13px;
    width: 130px;
    margin-top: 90px;
}

.progress .empty {
    background: url('img/progressEmpty.png') no-repeat right / cover;
    float: right;
    width: 100%;
    height: 100%;
    display: inline-block;
}

.progress .full {
    background: url('img/progressFull.png') no-repeat left / cover;
    float: left;
    width: 0%;
    height: 100%;
    display: inline-block;
}