html,
body {
  position: relative;
  height:100vh;
  margin: 0;
  padding: 0;
}
body {
  background: #0f0f11;
  color: #fff;
  line-height: 1.5;
  font-family:
    -apple-system, system-ui, 'Helvetica Neue', Helvetica, Arial, 'Segoe UI',
    Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  &.light {
    background: #fff;
  }
}
#app {
  height:100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.swiper{
    width:100%;
    height:100vh !important;
}
@media (orientation: portrait) {
  .swiper {
    aspect-ratio: 16/9;
    height: auto;
  }
}

.super-flow-content {
  padding: 16px;
  font-weight: bold;
  line-height: 1.1;
  text-wrap-style: balance;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  color: #fff;
  font-size: 6vw;
  inset-inline-start: 25%;
  width: 50%;
  transition-property: transform;
}

.swiper-super-flow .swiper-pagination-bullets {
  position: absolute;
  background: rgba(200, 200, 200, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(16px);

  white-space: nowrap;
  --swiper-pagination-bullet-size: 10px;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  --swiper-pagination-bullet-vertical-gap: 10px;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-color: #fff;
}

.swiper-super-flow .swiper-pagination-bullets.swiper-pagination-horizontal {
  padding: 16px;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0;
}
.swiper-super-flow .swiper-pagination-bullets.swiper-pagination-vertical {
  padding: 16px;
}

.back-top{
    position:fixed;
    right:30px;
    bottom:30px;

    width:60px;
    height:60px;

    border-radius:50%;

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

    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);

    color:#fff;
    text-decoration:none;

    font-size:12px;
    letter-spacing:.15em;

    border:1px solid rgba(255,255,255,.3);

    z-index:1000;

    transition:.3s;
}

.back-top:hover{
    background:rgba(255,255,255,.35);
    transform:translateY(-5px);
}

@media(max-width:767px){

    .back-top{
        right:20px;
        bottom:20px;

        width:50px;
        height:50px;
    }

}
