body {
  background-image: url("../images/index/texture_logo.jpg");
  background-color: #000000;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
}

.ruza-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 35%;
  animation: heartbeat 1.1s infinite;
}

.heart-container {
  animation: hovering 5s infinite;
}

.steam {
  position: fixed;
  left: 42%;
  bottom: 20px;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}

.itch {
  position: fixed;
  left: 60%;
  bottom: 20px;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}

.audio-player-container {
  position: fixed;
  right: 1%;
  top: 50px;
  transform: translate(0%, -50%);
  margin: 0 auto;
}

@keyframes heartbeat {
  0% {
    transform: scale(0.99);
  }
  20% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.99);
  }
  60% {
    transform: scale(1);
  }
  80% {
    transform: scale(0.99);
  }
  100% {
    transform: scale(0.99);
  }
}

@keyframes hovering {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.link {
  padding: 0 10px;
}

.particle-container {
  padding: 0;
  margin: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  background: url("../images/index/particles.png");
  background-size: cover;
  animation: scroll-anim 120s linear infinite;
  opacity: 30%;
}

@keyframes scroll-anim {
  0% {
    background-position: 0 0%;
  }
  100% {
    background-position: 0 100%;
  }
}

.background-video-container {
  position: absolute;
  z-index: 10;
  transform: translateY(-100%);
  width: 100%;
  height: 100%;
}

.background-video {
  position: absolute;
  z-index: 3;
  width: 100%;
  max-height: 100%;
}

.background-video-solid {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #000000;
}

.bg-anim-in {
  animation: video-anim-in 0.15s;
  animation-fill-mode: forwards;
}

.bg-anim-out {
  animation: video-anim-out 0.15s;
  animation-fill-mode: forwards;
}

@keyframes video-anim-in {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}

@keyframes video-anim-out {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}

.background-letsplay {
  position: absolute;
  z-index: 3;
  max-height: 100%;
  display: flex;
  width: 650px;
  height: 1000px;
  overflow-x: hidden;
  overflow-y: auto;
  flex-direction: column;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.news-sign-container {
  position: absolute;
  z-index: 10;
  transform: translateY(-100%);
  width: 100%;
  height: 100%;
}

.news-image {
  position: absolute;
  z-index: 3;
  max-height: 100%;
  left: 36%;
  bottom: 18%;
}

.buttons {
  position: absolute;
  z-index: 100;
  max-height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  left: 0;
  top: 0;
}
