/* ---------------------Coded By @sudhanshuprasad2002 (Github)--------------------- */

/* ---------------------Google-Fonts--------------------- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap");
/* ---------------------Google-Fonts--------------------- */

/* ---------------------Coded By @sudhanshuprasad2002 (Github)--------------------- */

/* ---------------------Global--------------------- */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
/* ---------------------Global--------------------- */

/* ---------------------Coded By @sudhanshuprasad2002 (Github)--------------------- */

/* ---------------------Video-Bg--------------------- */
.main {
  position: absolute;
  width: 100%;
  min-height: 100vh;
  right: 0;
}

.main video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glass {
  position: relative;
  width: 60vw;
  height: 40vh;
  padding: 3rem 1rem 1rem 1rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 28vh;
  box-shadow: 20px 20px 50px #000000cc;
  border-radius: 15px;
  background: #ffffff1a;
  overflow: hidden;
  border-top: 1px solid #ffffff1a;
  border-left: 1px solid #ffffff1a;
  backdrop-filter: blur(5px);
}
/* ---------------------Video-Bg--------------------- */

/* ---------------------Coded By @sudhanshuprasad2002 (Github)--------------------- */

/* ---------------------Text-Styling--------------------- */
.content {
  text-align: center;
}

.content span {
  text-transform: uppercase;
  display: block;
}

/* ---------------------Coded By @sudhanshuprasad2002 (Github)--------------------- */

.tt-01 {
  font-size: 3.4rem;
  color: #fff;
  letter-spacing: 0.5rem;
  position: relative;
  animation: slideInDown;
  animation-duration: 0.8s;
}

.tt-02 {
  font-size: 1rem;
  color: #fffd6a;
}

/* ---------------------Text-Styling--------------------- */

/* ---------------------Coded By @sudhanshuprasad2002 (Github)--------------------- */

/* ---------------------Button-Styling--------------------- */
.button-con {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0 0 0;
}

.button-con button {
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  cursor: pointer;
}

/* ---------------------Coded By @sudhanshuprasad2002 (Github)--------------------- */

.button-con button a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #000;
}

.button-con button a span {
  margin-left: 0.2rem;
  font-size: 1.9rem;
  line-height: 1rem;
}
/* ---------------------Button-Styling--------------------- */

/* ---------------------Coded By @sudhanshuprasad2002 (Github)--------------------- */

/* ---------------------Making-Glass-Responsive--------------------- */
@media screen and (max-width: 768px) {
  .glass {
    width: 90vw;
    height: 52vh;
    margin-top: 25vh;
    padding-top: 3rem;
    padding-left: 0.5rem;
    padding-bottom: 0;
  }

  .tt-01 {
    font-size: 2.5rem;
    margin-bottom: 1.3rem;
  }

  .tt-02 {
    padding-bottom: 1rem;
  }
}

/* ---------------------Making-Glass-Responsive--------------------- */

/* ---------------------Coded By @sudhanshuprasad2002 (Github)--------------------- */
