body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('image2.jpg');
  background-size: cover;
  background-position: center;
}

.construction {
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
}

.construction h1 {
  font-size: 3em;
  margin-bottom: 20px;
  animation: fadeIn 3s ease forwards;
}

.construction p {
  font-size: 1.2em;
  animation: slideIn 3s ease-out 1s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ... previous CSS remains unchanged ... */

.logo-container {
  text-align: center;
  margin-bottom: 20px;
}

.logo-container img {
  width: 150px; /* Adjust the size of the logo */
  height: 150px;
  border-radius: 50%; /* Make the image circular */
  border: 2px solid #fff; /* Optional: Add a border */
}
