*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    transition: .2s linear;
}

* img{
    width: 100%;
    height: 100%;
}

* button,
* input,
* textarea{
    border: none;
    outline: none;
    cursor: pointer;
}

html{
    --primary: #EC5C2C;
    --body: #f5f5f5;
    --background: white;
    --text: #1d1c25;
    --heading: #14131d;
    --rgba: rgba(255,255,255,0.75);
}


.dark{
    --primary: #EC5C2C;
    --body: #1b1e24;
    --background: #21252b;
    --text: whitesmoke;
    --heading: white;
    --rgba: rgba(0,0,0,0.88);
}

::-webkit-scrollbar{
    display: none;
}