@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap");
*{
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #000;
}

.top{
  position: fixed;
  top: 0;
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222222;
  z-index: 999;
  text-align: center;
}

.top h1{
  color: #bcbcbc;
  font-family: 'Cinzel', cursive;
  font-weight: 400;
  letter-spacing: .1em;
  font-size: clamp(0.5em, 7vw, 2.5em);
}

.bottom{
  position: fixed;
  bottom: 0;
  height: 40px;
  width: 100%;
  z-index: 99;
  background: #000;


}

.bottom .statement{
  position: fixed;
  bottom: 0;
  height: 25px;
  width: 100%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

}

.bottom .statement p{
  bottom: 5px;
  text-align: center;
  font-size: clamp(8px, 1.7vw, 10px);
  color: #777777;
}

.time {
  position: fixed;
  bottom: 10px;
  right: 30px;
  height: 30px;
  display: flex;
  max-width: 200px;
  align-items: center;
  justify-content: center;
  z-index: 101;
}

.time p{
  color: #777777;
  font-size: clamp(8px, 1.7vw, 10px);
}

.light-button
{
  width: clamp(200px, 80%, 800px);
  padding-top: 140px;
  padding-bottom: 60px;

  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  gap: 40px;
  flex-wrap: wrap;
  align-content: flex-start;
}

.btn{
  --btn-color: #00eeff;
  /*width: min(80%, 350px);*/
  width: clamp(100px, 60%, 350px);
  text-align: center;

  position: relative;
  display: inline-block;
  font-size: clamp(0.35em, 3.2vw, 1.5em);
  letter-spacing: .1em;
  color: var(--btn-color);
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid var(--btn-color);
  border-radius: 30px;
  padding: 10px 30px;
  z-index: 1;
  overflow: hidden;
  transition: color 1s, box-shadow 1s;
}

.btn:hover{
  transition-delay: 0s, 0.6s;
  color: #fff;
  box-shadow:
          0 0 10px var(--btn-color),
          0 0 20px var(--btn-color),
          0 0 40px var(--btn-color),
          0 0 80px var(--btn-color),
          0 0 160px var(--btn-color);

}

.btn::before{
  content: '';
  position: absolute;
  top: 0;
  left: -170px;
  width: 0;
  height: 100%;
  background-color: var(--btn-color);
  transform: skewX(35deg);
  z-index: -1;
  transition: 1s;
}

.btn:hover::before{
  width: 100%;
}

@media (min-width: 1200px){
  .light-button{
    width: min(80%, 1000px);
  }
}


/*@media (max-width: 750px){*/
/*  .btn{*/
/*    font-size: 1em;*/
/*  }*/
/*}*/

/*@media (max-width: 475px){*/
/*  .btn{*/
/*    font-size: 3vw;*/
/*  }*/
/*  .bottom p{*/
/*    font-size: 9px;*/
/*  }*/
/*}*/

/*@media (max-width: 400px){*/
/*  .btn{*/
/*    font-size: 0.6em;*/
/*  }*/
/*  .bottom p{*/
/*    font-size: 7px;*/
/*  }*/
/*}*/