body {
  color: white;
  background-color: black;
  font-family: "Arial";
  overflow: hidden;
}

.ttimg {
  animation: floatx cubic-bezier(0.770, 0.000, 0.175, 1.000) 0.5s;
  transform: scaleX(150%);
  transform: scaleY(150%);
}

.title {
  animation: floatx cubic-bezier(0.770, 0.000, 0.175, 1.000) 1s;
}

.desc {
  animation: floatx cubic-bezier(0.770, 0.000, 0.175, 1.000) 1.5s;
}

.lnkin {
  color: blue;
  text-decoration: underline;
  animation: floatx cubic-bezier(0.770, 0.000, 0.175, 1.000) 2.5s;
}

.ohyeahand {
  animation: floatx cubic-bezier(0.770, 0.000, 0.175, 1.000) 2s;
}

@keyframes floatx {
  0% {
    transform: translateY(200px);
    opacity: 0%;
  }
  100% {
    transform: translateY(0px);
    opacity: 100%;
  }
}