@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
body {
  background-color: #FFFFFF;
  color: #333;
  font-family: "Roboto", sans-serif;
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: url("../img/picture/bg.png") repeat 0 0;
  animation: bg-scrolling-reverse 3s infinite;
  animation-timing-function: linear;
}

h1, h2 {
  margin: 0;
  padding: 0;
}

.main {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.main .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: fit-content;
  height: fit-content;
  gap: 2rem;
}
.main .container__logo {
  width: 600px;
  height: auto;
}
@media screen and (max-width: 980px) {
  .main .container__logo {
    width: 300px;
  }
}
.main .container__text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 980px) {
  .main .container__text {
    gap: 1rem;
  }
}
.main .container__text__title {
  font-size: 4rem;
  line-height: 4rem;
  font-weight: 400;
}
@media screen and (max-width: 980px) {
  .main .container__text__title {
    font-size: 2.2rem;
    line-height: 2.2rem;
  }
}
.main .container__text__subtitle {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 400;
}
@media screen and (max-width: 980px) {
  .main .container__text__subtitle {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
.main__object-top-1 {
  position: absolute;
  top: -20px;
  left: 0;
  max-width: 40%;
}
@media screen and (max-width: 980px) {
  .main__object-top-1 {
    top: 0px;
  }
}
.main__object-top-2 {
  position: absolute;
  top: -20px;
  right: 0;
  max-width: 40%;
}
@media screen and (max-width: 980px) {
  .main__object-top-2 {
    top: 0px;
  }
}
.main__object-bottom {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
}
@media screen and (max-width: 980px) {
  .main__object-bottom {
    bottom: 0px;
  }
}

@keyframes bg-scrolling-reverse {
  100% {
    background-position: 50px 50px;
  }
}
@keyframes bg-scrolling {
  0% {
    background-position: 50px 50px;
  }
}