* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .profile-pic {
  width: 200px;
  border-radius: 50%;
  display: block;
  margin: 20px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
  
  body {
    font-family: Comic Sans MS, cursive, sans-serif;
    background-color: #fff8f0;
    color: #333;
    padding: 20px;
  }
  
  header {
    background-color: #ffb6c1;
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
  }
  
  header h1 {
    font-size: 2em;
  }
  
  nav {
    margin-top: 20px;
    text-align: center;
  }
  
  nav a {
    margin: 0 10px;
    color: #ff69b4;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  main {
    margin-top: 30px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  section {
    margin-bottom: 30px;
  }
  
  section h2 {
    color: #ff69b4;
    margin-bottom: 10px;
  }
  
  ul li {
    margin-left: 20px;
    margin-bottom: 5px;
  }
  
  footer {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background-color: #ffe4e1;
    border-radius: 12px;
    font-size: 0.9em;
  }

.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.shape {
  position: absolute;
  width: 20px;
  height: 20px;
  background: pink;
  border-radius: 50%;
  opacity: 0.6;
  animation: float 10s infinite ease-in-out;
}

.shape:nth-child(1) {
  left: 10%;
  animation-duration: 5s;
  background: #69a5ff;
}

.shape:nth-child(2) {
  left: 30%;
  animation-duration: 7s;
  background: #cde3ffb6;
}

.shape:nth-child(3) {
  left: 50%;
  animation-duration: 3s;
  background: #87ceeb;
}

.shape:nth-child(4) {
  left: 70%;
  animation-duration: 7s;
  background: #ffa07a;
}

.shape:nth-child(5) {
  left: 90%;
  animation-duration: 4s;
  background: #98fb98;
}

.shape:nth-child(6) {
  left: 80%;
  animation-duration: 9s;
  background: aquamarine;
}


@keyframes float {
  100% {
    top: 100%;
    transform: translateY(0) scale(0.4);
    background-color: #69a5ff;
  }
  50% {
    transform: translateY(-50%) scale(1.2);
  }
  0% {
    top: -10%;
    transform: translateY(-100%) scale(0.4);
  }
}

.product {
  background-color: #fff0f5;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  margin: 40px auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-img {
  width: 200px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.buy-button {
  background-color: #ff69b4;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.buy-button:hover {
  background-color: #ff1493;
}
