@font-face {
    font-family: "Lato";
    src: url("../fonts/Lato-Black.ttf");
}

html{
    background-color: #000;
}

body{
    margin: 0;
    padding: 0;
    background-image: url('../img/ic_background.svg'), linear-gradient(
        to left,
        #07070a,
        #060609
    );
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 100vh;
}

#main{
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    overflow: hidden;
}

iframe{
	border: 0px;
}

h1 {
    color: #ffffff;
    font-family: Lato;
    font-size: 48px;
    font-weight: 900;
    line-height: 58px;
    letter-spacing: 0em;
    text-align: center;
}

footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 32px 0px;
    color: #ffffff;
    font-family: Lato;
    font-size: 16px;
    font-weight: 900;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: center;
}

#container-preloader{
    background-color: #1B1B20;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: wait;
}

.logo-text{
    margin-top: 16px;
}

#loading{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

.rotation{
    -webkit-animation: 2s rotateY ease-in-out infinite;
    animation: 2s rotateY ease-in-out infinite;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: rotateY(-90deg);
    -moz-transform: rotateY(-90deg);
    -ms-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
}

@keyframes rotateY {
    0%{
        transform: rotateY(0deg);
    }

    100%{
        transform: rotateY(360deg);
    }
}