body.lemon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: white;
  background: linear-gradient(270deg, #fdfd96, #fff700);
  background-size: 200% 200%;
  animation: background 4s ease infinite;
  position: relative;
  overflow: hidden;
}

.content {
  text-align: center;
  z-index: 2;
  position: relative;
  text-shadow: 2px 2px 5px gold;
}

.title {
  font-size: 3em;
  font-family: Arial, sans-serif;
  margin-bottom: 1vh;
}

@media (max-width: 767px) {
  .title {
    font-size: 2.5em;
  }
}

.text {
  font-size: 1.5em;
  font-family: Arial, sans-serif;
}

.socials {
  font-size: 3.5rem;
  font-family: Arial, sans-serif;
  margin: 0vh;
}

.socials a {
  color: white;
  text-decoration: none;
  text-shadow: 2px 2px 5px crimson;
}

.float {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: Float 5s ease-in-out infinite;
  animation-delay: 0.001s;
  width: 12rem;
}

@keyframes background {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}

@keyframes Float {
  0% {
    transform: translate(-50%, -60%);
  }
  50% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(-50%, -60%);
  }
}