.main {
  background-color: #252628;
  height: 100vh;
  padding: 67px 0 0 0;
  overflow: hidden;
}
.main-header {
  display: flex;
  justify-content: center;
  position: relative;
}
.cloud1 {
  position: absolute;
  left: 0;
  top: -20%;
}
.cloud2 {
  position: absolute;
  right: 50px;
  top: -20%;
}
.bat {
  position: absolute;
  left: 20%;
  top: 200px;
}
.bat2 {
  position: absolute;
  right: 20%;
  top: 200px;
}
.main-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}
.text {
  color: #ffffff;
  font-family: var(--font-family-lalezar);
  font-size: var(--font-size-m);
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
  text-decoration: none;
}
.playgame {
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(
    180deg,
    rgb(0, 255, 163) 0%,
    rgb(220, 31, 255) 100%
  );
  background-clip: text;
  color: transparent;
  font-family: var(--font-family-lalezar);
  font-size: var(--font-size-m);
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
  text-fill-color: transparent;
}
.content-bottom {
  position: relative;
}
.brick {
  max-width: 440px;
  max-height: 97px;
  margin-top: 50px;
}
.brick img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dog-spin {
  position: absolute;
  right: 0;
  top: -50%;
}
.bottom-img {
  max-width: 100vw;
}
.bottom-img img {
  width: 100%;
}

.main-bottom {
  position: relative;
}
.dog1,
.dog2 {
  max-width: 150px;
  max-height: 150px;
}
.dog1 img,
.dog2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dog1 {
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(-1);
  animation: moveRight 5s linear infinite;
}
.dog2 {
  position: absolute;
  top: 0;
  right: 0;
  animation: moveLeft 5s linear infinite;
}
@keyframes moveRight {
  0% {
    left: 0;
    visibility: visible;
  }
  100% {
    left: 100%;
    visibility: hidden;
  }
}
@keyframes moveLeft {
  0% {
    right: 0;
    visibility: visible;
  }
  100% {
    right: 100%;
    visibility: hidden;
  }
}
@media only screen and (max-width: 768px) {
  .main {
    height: 100vh;
  }
  .main-logo img {
    width: 300px;
  }
  .cloud1 img,
  .cloud2 img {
    width: 100px;
  }
  .bat img,
  .bat2 img {
    width: 100px;
  }
  .bat {
    left: 0;
  }
  .bat2 {
    right: 0;
  }
  .dog-spin img {
    width: 50px;
  }
  .dog-spin {
    top: 0;
  }
  .bottom-img {
    position: absolute;
    margin-top: 100px;
  }
  .bottom-img img {
    height: 300px;
    object-fit: cover;
  }
  .dog1 {
    position: absolute;
    top: 100px;
    left: 0;
    transform: scaleX(-1);
    animation: moveRight 5s linear infinite;
  }
  .dog2 {
    position: absolute;
    top: 100px;
    right: 0;
    animation: moveLeft 5s linear infinite;
  }
}
