html,
body {
    margin: 0;
    height: 100%;
}

#canvas {
    width: 100%;
    height: 100%;
    display: block;
}

@font-face {
    font-family: "AkkuratHelsanaTT Bold Web";
    src: url("fonts/AkkuratHelsanaTT-Bold.eot");
    src: url("fonts/AkkuratHelsanaTT-Bold.woff2") format("woff2"), url("fonts/AkkuratHelsanaTT-Bold.woff") format("woff");
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        display: none;
    }
}



svg {
    fill: white;
}



.fadeOut {
    animation: fadeOut 2s ease-in-out;
    opacity: 0;
    pointer-events: none;
}

#loader {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 1000;
    background-color: white;
}

#loader img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    min-width: 50%;
    min-height: 50%;
	color: #fff;
}
