@font-face {
  src: url("https://ik.imagekit.io/sheryians/SiteStaticFiles/Gilroy-Extrabold_YC6oQDa3Ix.ttf?updatedAt=1697720439904");
  font-family: "Gilroy";
  font-weight: 700;
}

@font-face {
  src: url("https://ik.imagekit.io/sheryians/SiteStaticFiles/Gilroy-Bold_JK4cTGJOE.ttf?updatedAt=1697720175118");
  font-family: "Gilroy";
  font-weight: 600;
}

@font-face {
  src: url("https://ik.imagekit.io/sheryians/SiteStaticFiles/Gilroy-Semibold_zTZ2PgJOF.ttf?updatedAt=1697720387357");
  font-family: "Gilroy";
  font-weight: 500;
}

@font-face {
  src: url("https://ik.imagekit.io/sheryians/SiteStaticFiles/Gilroy-Medium_eHDK2RllDd.ttf?updatedAt=1697720216741");
  font-family: "Gilroy";
  font-weight: 400;
}

@font-face {
  src: url("https://ik.imagekit.io/sheryians/SiteStaticFiles/Gilroy-UltraLight_GObAYY-eiQ.ttf?updatedAt=1710171746221");
  font-family: "Gilroy";
  font-weight: 100;
}

:root {
  --primaryLight: #F8F8F8;
  --backgroundColor: #0c0f14;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gilroy";
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  /* user-select: none; */
  text-rendering: optimizeSpeed;
  color: var(--primaryLight);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--backgroundColor);
  color: #fff;
}

.hidden{
  display: none;
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: larger;
  margin: 2.5vh 5vw;
}

button {
  visibility: hidden;
  opacity: 0;
  margin: 10px;
  color: white;
  background-color: transparent;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid white;
  animation: fadeIn 2s forwards ease-in;
}

.section div{
  display: inline;
}

.section span:not(#timerSpan):not(#sec5){
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
  margin: 0px 2.5px;
}

.box {
  max-width: 40ch;
  text-align: center;
  opacity: 0;
  transform: scale(0.94);
  color: white;
  margin-bottom: 20px;
}

.preLoader {
  position: fixed;
  z-index: 1000;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: #fff;
  background-color: var(--backgroundColor);
  visibility: visible;
}

.preLoader .center .text {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: rgba(230, 230, 230, 0.8588235294);
}

.preLoader .center .text h1 {
  font-weight: 600;
  font-size: 2.1rem;
}

.loading {
  font-weight: 600;
  animation: loading 0.5s linear infinite both alternate;
  color: #fcfcfc;
}

#loading .loading {
  animation: loading 1s linear infinite both alternate;

}

.highlight-box {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 20%;
  /* Height of your highlight box */
  z-index: 1;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  padding: 2rem 5vw;
  z-index: 101;
  cursor: pointer;
}

.nav .right {
  top: 0;
  right: 0;
  position: fixed;
  padding: 2rem 5vw;
}

.nav div {
  margin: 1.5vh 0vw;
}

.timeleft {
  font-size: larger;
  margin: 0px 15px;
}

.timeleft span {
  font-weight: bolder;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  bottom: 0px;
  padding: 10px 10px 20px 10px;
  width: 100%;
  background-color: var(--backgroundColor);
}

.statsSec {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

.statsSec div{
  margin: 10px;
}

#comment-textarea{
  padding: 10px;
}

/* Keyframes */

@keyframes fade-in {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes loading {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.authVideo{
  margin: 10px 30px;
}

#whatsapp{
  text-decoration: underline;
  cursor: pointer;
}