:root {
    --clr-lightgrey: #dadada;
    --clr-black: #000;
    --clr-white: #fff;
    --clr-textgray: #575555;
}

* {
    margin: 0;
    padding: 0;
    line-height: calc(1em + 0.5rem);
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Outfit', sans-serif;
}

img,
picture,
canvas,
svg{
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    border: none;
    background: none;
    color: inherit;
    cursor: pointer;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: inherit;
}







