/* All css materials for the avatar */

body,
html {
    margin: 0;
    padding: 0;
    background: #25252B;
}

* {
    touch-action: manipulation;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
    position: relative;
    color: white;

    font-family: 'Poppins', sans-serif;
    width: 98vw;
    height: 100vh;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;


}

#c {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
}

@media (max-width: 767px) {

    #c {
        display: none;
    }

    #loading {
        visibility: hidden;
    }

    #loader {
        visibility: hidden;
    }

    .js-loader {
        visibility: hidden;
    }
}