html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

* {
    font-family: 'Poppins', sans-serif;
    /* transition: transform .2s, filter .2s; */
    transition: all .2s;
    margin: 0;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

/* ============================== */

html {
    scroll-snap-type: y mandatory;
    overflow-x: hidden;
    background-color: #e08222;
}

main {
    overflow-x: hidden;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    /* background: #fff; */
    background: #e78515;
}

/* Handle */
::-webkit-scrollbar-thumb {
    /* background: #e78515; */
    background: #c02431;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    /* background: #c02431; */
    background: #8f151f;
}

main img {
    height: 100%;
    width: 100%;
}