@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
*:not(ul,ol){
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}
.flex{
  display: flex;
  align-items: center;
  justify-content: center;
}
.c{
  flex-flow: column;
}
.texCen{
  text-align: center;
}
.w100p{
  width: 100%;
}
body{
  --stdbg: #176054;
  font-family: "Jost", sans-serif;
  min-height: 100vh;
  background: var(--lightBg2);
  width: 100%;
  display: flex;align-items: center;justify-content: flex-start;flex-flow: column;
}
html{ 
  scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth;
}
.forceCenter{ 
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.noBtn{
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}
.button{
  padding: 7px 16px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--stdBg);
  color: #fff;
  letter-spacing: 1px;
  filter: hue-rotate(45deg);
}

.lined{
  text-align: center;
  width: max-content;
  --w: 100px;
}
.lined::before,
.lined::after{
  content: "";
  position: absolute;
  width: var(--w);
  height: 1px;
  background: var(--lightBg1);
  top: 50%;
}
.lined::before{
  left: calc(-1*var(--w));
}
.lined::after{
  right: calc(-1*var(--w));
}

@media screen and (max-width: 600px){
  .lined{
    --w: 50px;
  }
}

body > * ::-webkit-scrollbar{
  width: 0;
  height: 0;
}body > * ::-moz-scrollbar{
  width: 0;
  height: 0;
}
body *{
    scrollbar-width: none;
}

.orderNow{
  padding: 15px 25px;
  font-weight: bold;
  font-size: 1.2em;
  border: none;
  background: yellow;border-radius: 5px;color: #000;
}
a{
  color: #000;
}