body {
  font-family: Arial, sans-serif;
  background-color: #333333;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  text-align: center;
  padding: 20px;
}

.profile-image-container {
  position: relative;
  display: inline-block;
}

.profile-image-container img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}

.profile .verified-icon {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 25px;
  height: 25px;
  color: #0085FF;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  font-size: 20px;
  z-index: 10;
}

.profile h1 {
  color: #ADD8E6;
  margin-bottom: 5px;
}

.profile p {
  color: #FFFFFF;
  font-size: 16px;
}

.thumbnails {
  padding: 20px;
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
}

.thumbnail {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumbnail:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.thumbnail:hover img {
  transform: scale(1.2);
}

.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

footer {
  text-align: center;
  padding: 20px;
  margin-top: auto;
  /* Push footer to the bottom */
}

/* Responsive Design */
@media (max-width: 768px) {
  .thumbnail {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }

  .thumbnail.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .thumbnail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-image-container img {
    width: 120px;
    height: 120px;
  }

  .profile .verified-icon {
    top: 3px;
    right: 3px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .thumbnail-grid {
    grid-template-columns: 1fr;
  }
}