@import url("https://fonts.googleapis.com/css2?family=TikTok+Sans:opsz,wght@12..36,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Special+Gothic+Expanded+One&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "TikTok Sans";
}

body,
html {
  overflow: hidden;
}
video{
    border-radius: 0px 0px 6px 6px;
}

.bg {
  position: absolute;
  width: 100vw;
  height: 110vh;
  background: #000;
  z-index: -9999;
  > img {
    width: 100vw;
    height: 120vh;
    filter: blur(10px);
  }
}
.video-ass {
  > video {
    max-width: 385px;
  }
}
.video-tits {
  > video {
    max-width: 385px;
  }
}
main {
  width: 100vw;
  height: 100vh;
}

.wrapper-banner {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1;
  margin-top: 2.5vh;
}

.text-banner {
  z-index: 1;
}

.banner {
  font-family: "Great Vibes", cursive;
  color: white;
  font-size: 68px;
  width: 100%;
  height: 70px;
  text-shadow: #b700ff73 0px 0px 10px;
  user-select: none;
  margin-top: 10px;
}

.banner-description {
  display: flex;
  justify-content: center;
  margin-top: 0.3vh;
}


.windows {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 3.5vh;
}

.window:hover {
  transition: 0.2s ease-in-out;
  transform: scale(1.07);
  animation: glow-blue 1s ease-in-out infinite alternate;
}

.window:hover .content {
  filter: blur(0px);
  cursor: pointer;
}


.custom-font {
  font-family: "Special Gothic Expanded One", sans-serif;
  animation: glow 2.5s ease-in-out infinite alternate;
  margin-top: -20px;
}

footer{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 27px;
}

a{
    text-decoration: none;
    color: white;
}

.photo-number{
    font-size: 37px;
    display: flex;
    justify-content: center;
}

.watch-now-button{
    z-index: 3;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: end;
    width: 100%;
    height: 100%;
    bottom: -1px;
    border-radius: 0px 0px 6px 6px;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.842) 0%, rgba(0, 0, 0, 0) 50%);
    > h6{
        font-size: 40px;
        margin-bottom: 20px;
        text-shadow: #000 0px 0px 10px;
    }
}