body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: loadingloaded 0.4s ease-in-out 2s forwards;
}
@keyframes loadingloaded {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
.overlay img {
  width: 200px;
  height: 200px;
  animation: climb 1.5s ease-in-out forwards;
}
@keyframes climb {
  from {
    opacity: 0;
    transform: translate(-100%, 100%);
  }
  50% {
    opacity: 1;
    transform: translate(-100%, 100%);
  }
  to {
    transform: translate(50%, -50%);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

h1 {
  color: #666;
  margin-bottom: 1rem;
}

p {
  line-height: 1.6;
  margin-bottom: 2rem;
}