/* ============================================================
   CSS RESET
   ============================================================ */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    overflow-x:hidden;

}

img{

    display:block;
    max-width:100%;

}

button{

    border:none;
    cursor:pointer;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}