* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(45deg, #3498db, #2ecc71);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 400% 400%;
  animation: gradient 10s ease infinite;
}

.container {
  text-align: center;
  color: white;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: 500;
  animation: fadeIn 3s ease;
}

p {
  font-size: 1.5em;
  margin-bottom: 20px;
  font-weight: 300;
  animation: fadeIn 4s ease;
}

.construction-gif {
  width: 100px;
  margin-top: 20px;
  animation: bounce 1s infinite;
}

.footer {
  margin-top: 30px;
  font-size: 1.2em;
}

.footer a {
  color: #ffcc00;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

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

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
  }
  40% {
      transform: translateY(-20px);
  }
  60% {
      transform: translateY(-10px);
  }
}
