* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #f3f4f6;
  background-color:rgba(0, 0, 0, 0.3);
  background-image: url("bg-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}

body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 4rem;
}

.logo {
  margin-bottom: 3rem;
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-25px);
  }

  60% {
    transform: translateY(-15px);
  }
}

.logo img {
  height: 200px;
  width: auto;
 
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.main-text {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  transition: background 0.3s ease;
}



.contact-item i {
  font-size: 1.5rem;
 
  color: #ffffff;
}

.contact-item a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.contact-item a:hover {
  color: #d1d5db;
  text-decoration: underline;
}




@media (max-width: 768px) {
  .container {
    padding: 3rem 2rem;
    max-width: 90%;
  }

  .logo img {
    height: 80px;
  }

  h1 {
    font-size: 2.75rem;
  }

  .main-text {
    font-size: 1.25rem;
  }

  .contact-info {
    font-size: 1.1rem;
  }

  .contact-item i {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 2rem 1.5rem;
  max-width: 100%;
  }

  .logo img {
    height: 70px;
  }

  h1 {
    font-size: 2.25rem;
  }

  .main-text {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .contact-info {
    font-size: 1rem;
    gap: 1rem;
  }

  .contact-item i {
    font-size: 1.1rem;
  }

