* {
  margin: 0;
}

.floating-girl {
  position: relative;
  top: -40px;
  width: 400px;
  pointer-events: none;
}

.floating-girl__line {
  width: 50px;
  margin: auto;
  position: relative;
  right: 20px;
  height: 400px;
}

.floating-girl__img {
  width: 400px;
  position: relative;
  left: -150px;
  top: 10px;
  animation: float 3s alternate infinite ease-in-out;
}

@keyframes float {
  from {
    transform: translateY(0);
  }
  from {
    transform: translateY(15px);
  }
}

.static-bg {
  background-image: url('/images/staticbg.gif');
}

.warp-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.warp-link a {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: block;
}

.main-container {
  position: relative;
  max-width: 100vw;
  width: 100vw !important;
  height: 100vh;
  margin: 0
}

body {
  overflow: hidden;
  width: 100vw;
}

.page-content {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 100vh;
  background-color: black;
}