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

body {
  display: grid;
  place-items: center;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  background: url('https://uploads.onecompiler.io/43ppscv7b/43ppsdxpe/logo%201.jpg') no-repeat center center fixed;
  background-size: cover;
  animation: fadeInBody 1.5s ease-in;
}

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

h1 {
  color: #ffffff;
  text-align: center;
  font-size: 3rem;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  animation: fadeUp 1s ease-in-out;
}

p {
  color: #e0e0e0;
  text-align: center;
  font-size: 1.2rem;
  margin-top: 10px; 
  margin-bottom: 30px; 
  animation: fadeUp 1.2s ease-in-out;
  line-height: 1.5;
}

ul {
  display: grid;
  gap: 20px;
  place-items: center;
  padding: 0;
  animation: fadeUp 1.4s ease-in-out;
}

li {
  list-style: none;
  color: white;
  width: 300px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  font-weight: 600;
  letter-spacing: 0.6px;
  backdrop-filter: blur(8px);
  background: rgba(18, 86, 196, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

li:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
  transform: translateY(-4px) scale(1.02);
  cursor: pointer;
}

a {
  text-decoration: none;
  width: 100%;
  display: flex;
  justify-content: center;
}

img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
  margin-bottom: 20px; 
  transition: transform 0.4s ease;
  animation: fadeUp 0.8s ease-in-out;
}

img:hover {
  transform: scale(1.08);
}


@media (max-width: 767px) {
  h1 {
    font-size: 2.2rem;
  }

  p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 5px;
    margin-bottom: 20px; 
  }

  img {
    margin-bottom: 15px; 
  }

  ul {
    gap: 15px; 
  }

  li {
    width: 280px; 
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }

  p {
    font-size: 1.3rem;
  }

  body {
    background: url('https://uploads.onecompiler.io/43ppscv7b/43ppsdxpe/3253570.jpg') no-repeat center center fixed;
    background-size: cover;
  }
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
