*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{
    position: relative;

    font-family:'Inter',sans-serif;

    background:#050505;

    color:#ffffff;

    overflow-x:hidden;



}

main{

    position: relative;

    width:100%;

}


img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

button{

    font-family:inherit;

}


/* =========================================================
   GLOBAL PARTICLE FIELD
========================================================= */


#particle-field {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: 0;

    pointer-events: none;

    display: block;
}

/* Put the actual sections above the canvas */

main > section {
    position: relative;
    z-index: 1;
}


