body {
  font-family: Arial, sans-serif;
  background: linear-gradient(270deg, #b7fbb7, #98f69b);
  background-size: 400% 400%;
  animation: gradientAnimation 5s ease infinite;
  color: #333;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  box-sizing: border-box;
}

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

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.profile {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(192, 192, 192, 0.551);
  text-align: center;
  transition: transform 0.3s;
}

.profile:hover {
  transform: scale(1.05);
}

.profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #4caf50;
  margin-bottom: 10px;
}

.profile p {
  font-size: 16px;
  color: #4caf50;
  margin: 0;
}

.profile a {
  text-decoration: none;
  color: inherit;
}
