:root{
  font-size: 16px;
  ---header-bg-color: #fff;
}

*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

html::-webkit-scrollbar{
  width: 0px;
}

body{
  width: 100%;
  min-height: 100vh;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

a, a:active, a:link, a:before, a:after{
  color: inherit;
  text-decoration: none;
}

::selection{
  background-color: rgb(222, 161, 40);
}

img{
  user-select: none;
}