

:root{
  font-size: 16px;
  --header-bg-color: #F1F6F9;
  --mark-color: #3b3b54;
  --mark-hover-color: #FFB38E;
  --navbar-bg-color: #385071;
  --navbar-text-color: #FBF9F1;
  --product-bc-color: #F6F5F5;
}

input, textarea, select {
  font-size: 16px; 
}

*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
html::-webkit-scrollbar{
  width: 0px;
}
body{
  width: 100%;
  height: auto;
  min-height: 100vh;
  background-color: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
a, a:active, a:visited{
  text-decoration: none;
  color: rgb(37, 37, 37);
}
ul{
  list-style: none;
}
button{
  cursor: pointer;
}
