body {
    margin: 0;
    padding: 0;
    /* leave it to hide the scrollbars */
    overflow: hidden;
    background: #000;
}

.canvas__container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 0;
    margin:0;
    box-sizing: border-box;
}

canvas {
    margin: auto;
    display: block;
    height: auto !important;
    width: auto !important;
    max-height: 100%;
    max-width: 100%;
    /*box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.1);*/
}


.loader {
    position:absolute;
    left:0;
    top: 0;
    right:0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
}

.message {
    position:absolute;
    left: 0;
    top:0;
    bottom:0;
    right:0;
    background: rgba(255,255,255,0.8);
    display: none;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    font-family: 'Raleway', sans-serif;
}
