/* roots.css */
/* Root/base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'poppins', sans-serif;
    font-weight: 600;
    list-style: none;
    text-decoration: none;
}
p,a,input,label,textarea,span,ul,li{
    font-family: 'poppins', sans-serif;
    font-weight: 400;
    list-style: none;
    text-decoration: none;
}