body {
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: #000;
    width: 100%;
    height: 130%;
}

@keyframes fadeId {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#bootContainer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    animation: fadeId 0.5s;
    text-align: center;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background-color: rgba(0, 0, 0, 0.67);
}

.align-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

#canvasContainer {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#canvasContainer canvas {
    width: 100% !important;
    height: 100% !important;
}

#debugContainer {
    position: fixed;
    left: 2px;
    top: 2px;
    padding: 2px 5px;
    font-family: monospace;
    font-size: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}

#debugContainer > * {
    display: inline-block;
}

#debugContainer > *::after {
    content: ' | ';
}

#debugContainer > *:last-child::after {
    content: '';
}

#debugContainer input {
    vertical-align: middle;
}

.spinner {
    text-align: center;
    margin: auto;
    display: block;
    animation: spinner 1s infinite linear;
}

@keyframes spinner {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#Cocos2dGameContainer {
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
    width: 0;
    height: 0;
}

#landscape-bg {
    background-size: cover;
    height: 100%;
    position: absolute;
    width: 100%;
    background-image: url('../img/landscape-bg.jpg');
    animation: fadeId 0.5s;
}

/* end of custom style */
