html,
body {
  height: 100%;
  font-family: "Roboto";
}
@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
body {
  background-image: url(../images/background-borneo.jpg) !important;
  background-position: 0px 0px;
  background-repeat: repeat-x;
  animation: animatedBackground 50s linear infinite alternate;
}
#main-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100%;
}
#main-animation > img {
  width: 50%;
}
#main-animation.transisition-ended > img {
  width: 250px;
  transition: width 500ms ease-in-out;
}
#content {
  display: none;
  position: relative;
}
#main-animation.transisition-ended #content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.img-text img {
  opacity: 0;
  width: 330px;
  margin-top: 40px;
}
.img-text img.visible {
  opacity: 1;
  transition: opacity 500ms ease-in-out;
}
#img-borneo {
  opacity: 0;
  position: absolute;
  width: 300px;
  height: auto;
  right: -60%;
  top: 25%;
}
#img-borneo.visible {
  opacity: 1;
  transition: opacity 500ms ease-in-out;
}
.social-wrapper {
  display: flex;
  gap: 15px;
  position: relative;
  margin-top: 100px;
}
.social-wrapper > img {
  position: absolute;
  width: 170px;
  top: -60px;
  left: -60px;
  opacity: 0;
}
.social-wrapper a {
  background-color: rgb(255, 102, 51);
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  opacity: 0;
}
.social-wrapper a.visible {
  opacity: 1;
  transition: opacity 500ms ease-in-out;
}
.social-wrapper > img.visible {
  opacity: 1;
  transition: opacity 500ms ease-in-out;
}
.social-wrapper a:hover {
  transform: scale(1.05);
  transition: all 300ms ease-in-out;
}
.social-wrapper a img {
  width: 80px;
}
footer {
  color: white;
  margin-top: 40px;
  opacity: 0;
  text-align: center;
}
footer.visible {
  opacity: 1;
  transition: opacity 500ms ease-in-out;
}
@media screen and (max-width: 992px) {
  .social-wrapper a {
    width: 80px;
    height: 80px;
  }
  .social-wrapper a img {
    width: 40px;
  }
  #img-borneo {
    width: 100px;
    top: 50%;
    right: -24%;
  }
}
