html,body{
    overflow-x: hidden;
}

*, *:before, *:after {
    box-sizing: border-box;
}

p:last-child{
    margin-bottom: 0;
}

h1,h2,h3,h4,h5,h6{
    margin: 0;
}

*{
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
}

*::selection{
    background-color: var(--e-global-color-accent);
    color: #ffffff;
}

/*
body::after{
    content: '';
    background-image: url('../img/main/noise.svg');
    background-position: center center;
    background-repeat: repeat;
    background-size: contain;
    mix-blend-mode: multiply;
    position: fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    pointer-events: none;
    opacity: 0.5;
}
*/


