/*!
* Neon template
* Resets & settings
*/

/* Resets */
@media all {

    body {
        overflow: hidden;
        overflow-y: scroll;
        margin: unset;
    }

    a {
        color: unset;
        text-decoration: unset;
    }

    ul ,
    ol {
        list-style: unset;
        margin: unset;
        padding: unset; 
    }

    h1 ,
    h2 ,
    h3 ,
    h4 ,
    h5 {
        margin: unset;
    }

    p {
        margin: unset;
    }
    
    button {
        background-color: unset;
        border: unset;
        padding: unset;
    }

    figure {
        margin: unset;
    }

    img {
        display: block;
        max-width: 100%;
        height: auto;
    }

}

/* Settings */
@media all {

    html {
        text-rendering: optimizelegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
}

/* And a little tweak */
@media all {

    .loading svg {
        display: none;
    }
    
}