
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap');
*{
  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{
  --prim: #000000; 
  --onPrim: #ffffff;
  --primCont: #1b1b1b;
  --onPrimCont: #848484;
  --secCont: #1b1b1b;

  min-height: 100vh;
  font-family: Quicksand;
  width: 100%;
  display: flex;align-items: center;justify-content: flex-start;flex-flow: column;
  background: url("https://rstr.in/google/firebase-studio/7vrOON77bRj-source") no-repeat;
  background-position: center -200px;
  background-attachment: fixed;
}
.iconParent{
  line-height: 2em;
  display: flex;
  align-items: center;

}
.icon{
  width: 25px;
  height: 25px;
  margin: 4px;
}
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;
}

.head {
      color: var(--onPrim);
      text-align: center;
      padding: 150px 20px 100px;
    }