
@font-face {
    font-family: 'custom';
    src: url('assets/fonts/ZenMaruGothic-Bold.ttf');
    font-weight:400;
    font-weight:normal;
  }
  
body,html{
    padding:0;
    margin:0;
    overflow:hidden;
    color: rgba(255, 255, 255, 0.87);
    background-color: #382f64;
  
    -webkit-tap-highlight-color: #382f64;
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: none;
    -webkit-user-select: none;
}
#app {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}


#loader {
    width: 100%;
    height: 50px;
    position: absolute;
    text-align: center;
    margin-top: 250px;
    display: block;
}

#loader,
#loader:after {
    border-radius: 50%;
    width: 10em;
    height: 10em;
}
#loader {
    margin: 60px auto;
    font-size: 10px;
    position: absolute;
    z-index: 99;
    left: 50%;
    top: 50%;
    margin-left: -5em;
    margin-top: -5em;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(255, 255, 255, 0.2);
    border-right: 1.1em solid rgba(255, 255, 255, 0.2);
    border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
    border-left: 1.1em solid #ffffff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@media screen and (min-aspect-ratio: 1/1) {

}

@media screen and (max-width: 1240px) {
    #game_logo {
        width: 65%;
    }
    #middle-section {
        width: 80%; 
    }
    #azerion_logo {
        width: 10%;
    }

}

@media screen and (max-width: 860px) {
    #game_logo {
        width: 80%;
    }

    #azerion_logo {
        width: 10%;
    }

    #middle-section {
        width: 80%; 
    }
}

@media screen and (max-width: 500px) {
    #game_logo {
        width: 80%;
    }

    #middle-section {
        width: 80%; 
    }

    #azerion_logo {
        width: 20%;
    }

}

@media screen and (max-height: 1200px) and (min-aspect-ratio: 1/1) {
    #game_logo {
        width: 30%;
    }

    #azerion_logo {
        width: 10%;
    }

    #middle-section {
        width: 30%;
    }
}


