body {
    margin: 0;
    padding: 0;
    background: #2a2a2a;
}

#gameContainer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
    /*Change this to change player background color*/
    /*background: #2a2a2a;*/
}

.pre-loader {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    display: none;
}

.pre-loader .title {
    color: #eee;
    letter-spacing: 0.1em;
}

.progress-bar {
    width: 40%;
    padding: 5px;
    background: #1a1a1a;
    box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444;
    border-radius: 18px;
}

.progress-bar .fill {
    background: #34c2e3;
    height: 24px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;
    border-radius: 18px;
    color: #fff;
    text-align: center;
    line-height: 24px;
    overflow: hidden;
}