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

*,
*::before,
*::after {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    min-height: 100vh;

    font-family: 'Poppins', sans-serif;

    background: #071114;

    color: #fff;

}

a {

    color: inherit;

    text-decoration: none;

}

button,
input,
select,
textarea {

    font: inherit;

}

button {

    border: 0;

}

img {

    max-width: 100%;

    display: block;

}