﻿* {
    box-sizing: border-box;
}
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: monospace;
    font-family: 'Exo 2', sans-serif !important;
}
.preload{
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom right, #53565A, #fff);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}
.logo {
    width: 500px;
    height: 70px;
    margin: 150px auto 50px auto;
    font-size: 32px;
    text-shadow: -1px 2px 2px #000;
    text-align: center;
    color: azure;
    position: relative;
    animation: fade 1s;
}
.loader-frame {
    width: 100px;
    height: 100px;
    margin: auto;
    top: 90px;
    position: relative;
}
.loader1 {
    position: absolute;
    border: 8px solid transparent;
}
.loader1 {
    width: 100px;
    animation: clockwisespin 3s linear 3;
}
.loading-frame {
    margin: auto;
    top: 10px;
    font-size: 16px;
    text-shadow: -1px 2px 2px #000;
    text-align: center;
    color: azure;
    position: relative;
    animation: reveal 2s;
}
@media (min-width: 768px) {
    .logo {
        width: 500px;
        font-size: 40px;
    }
    .loader-frame {
        top: 0;
    }
}
@media (max-width: 767px) {
    .logo {
        width: 240px;
        font-size: 28px;
    }
    .loader-frame {
        top: 10px;
    }
    .loading-frame {
        top: 40px;
    }
}
@media (orientation: landscape) {
    .logo {
        width: 400px;
    }
    .logo {
        top: -80px;
    }
    .loader-frame {
        top: -40px;
    }
    .loading-frame {
        top: -20px;
    }
}
@keyframes clockwisespin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes anticlockwisespin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}
@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes reveal {
    0% {
        opacity: 0;
        margin-left: -40%;
    }
    100% {
        opacity: 1;
        margin-left: 0;
    }
}