html, body, canvas{
    padding: 0;
    margin: 0;
    background: #000;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Oswald', Verdana;
}


#no-webgl{
    display: none;
    z-index: 1000;
    background: #eee;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: #000;
}

.alert-title{
    font-size: 90px;
    font-family: 'Raleway';
    text-align: center;
    margin: 100px 0;
    font-weight: 900;
    text-transform: uppercase;
}

.alert-text{
    text-align: center;
    margin: 50px 0;
}

.loader-container{
    background: #000;
    height: 100%;
}

.loader{
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    z-index: 100;
    margin-left: -25px;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    opacity: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
    -webkit-animation: loading 2s cubic-bezier(0.445, 0.050, 0.550, 0.950) infinite;
    -moz-animation: loading 2s cubic-bezier(0.445, 0.050, 0.550, 0.950) infinite;
    -o-animation: loading 2s cubic-bezier(0.445, 0.050, 0.550, 0.950) infinite;
    animation: loading 2s cubic-bezier(0.445, 0.050, 0.550, 0.950) infinite;
}


@-webkit-keyframes loading{
    0%{
        -webkit-transform: scale(0);
        opacity: 0.5;
    }
    100%{
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@-moz-keyframes loading{
    0%{
        -moz-transform: scale(0);
        opacity: 0.5;
    }
    100%{
        -moz-transform: scale(1);
        opacity: 0;
    }
}

@-o-keyframes loading{
    0%{
        -o-transform: scale(0);
        opacity: 0.5;
    }
    100%{
        -o-transform: scale(1);
        opacity: 0;
    }
}

@keyframes loading{
    0%{
        -ms-transform: scale(0);
        transform: scale(0);
        opacity: 0.5;
    }
    100%{
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}


@media (max-width: 760px){
    #no-webgl{
        display: block;
    }
}