<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  margin: 0;
  padding: 0;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
.wrapper {
  display: flex;
  height: 100vh;
  width: 100%;
  justify-content: center;
  align-items: center;
  background-image: url("./background.jpg");
  background-size: cover;
  background-position: center;
}
.description {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding: 2rem;
  max-width: 800px;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 1.2rem;
}
.center {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.titloo {
  font-size: 4rem;
  color: white;
}

.socials {
  display: flex;
  margin-top: 3rem; /* Adjusted from 8rem to 6rem */
  gap: 17rem;
  user-select: none;
}

#tg,
#x {
  padding-top: 6rem; /* Adjust the value as needed to move them down */
}

#dex,
#pump {
  padding-bottom: 2rem; /* Adjust the value as needed to move them up */
}

.ca {
  position: fixed;
  color: rgb(212, 212, 212);
  font-size: 3rem;
  bottom: 1rem;
}
.car {
  position: absolute;
  scale: 3;
  bottom: 12rem;
  left: -100px; /* Start outside the screen on the left */
  width: 100px;
  animation: moveCar 6s linear infinite;
}
.char {
  position: absolute;
  scale: 3;
  bottom: 12rem;
  left: -100px; /* Start outside the screen on the left */
  width: 80px;
  animation: moveChar 6s linear infinite;
}

@keyframes moveCar {
  0% {
    left: -100px; /* Start outside the screen on the left */
  }
  40% {
    left: calc(50% - 50px); /* Middle of the screen */
  }
  55% {
    left: calc(50% - 50px); /* Pause in the middle */
  }
  100% {
    left: calc(100% + 100px); /* End outside the screen on the right */
  }
}
@keyframes moveChar {
  0% {
    left: -200px; /* Start outside the screen on the left */
  }
  40% {
    left: calc(40% - 50px); /* Middle of the screen */
  }
  55% {
    left: calc(40% - 50px); /* Pause in the middle */
  }
  100% {
    left: calc(100% + 100px); /* End outside the screen on the right */
  }
}

@media (max-width: 600px) {
  .titloo {
    font-size: 1.5rem;
    position: fixed;
    top: 2rem;
  }

  .socials {
    gap: 1rem;
    margin-top: 10rem;
  }
  .socials img {
    width: 60px;
  }
  #tg,
  #x {
    padding-top: 0rem; /* Adjust the value as needed to move them down */
  }

  #dex,
  #pump {
    padding-bottom: 0rem; /* Adjust the value as needed to move them up */
  }

  .ca {
    display: none;
  }

  .car {
    width: 100px;
    bottom: 12rem;
  }
  .char {
    width: 70px;
    bottom: 12rem;
  }
  .description {
    width: 100%;
    font-size: 1rem;
  }
}
</pre></body></html>