body {
  background: #191919;
  font-family: 'Comic Sans MS', cursive;
  text-align: center;
  padding: 40px;
  
}

h1 {
  font-size: 2.5rem;
  color: #ff69b4;
  margin-bottom: 30px;
}
#portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 30px;
  justify-items: center;
}



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

.candy-jar {
  position: relative;
  width: 250px;
  height: 275px;
  background: #c85e9a;
  border: 3px dashed #ffb6c1;
  border-radius: 20px;
  box-shadow: 0 0 10px #ff69b4aa;
  transition: transform 0.3s ease;
  overflow: hidden;
  padding: 20px 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.candy-jar:hover {
  transform: scale(1.05);
}

.candy-jar img {
  width: 120px;
  height: auto;
  margin-top: 10px;
}


.jar-info {
  position: absolute;
  bottom: 0;
  background: #fff0f5;
  width: 100%;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  font-size: 0.9rem;
  border-top: 2px dashed #ffb6c1;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  color: #333;
}

.candy-jar:hover .jar-info {
  transform: translateY(0);
}

a {
  color: #ff1493;
  text-decoration: none;
  font-weight: bold;
}

.intro {
  max-width: 700px;
  margin: 1rem auto;
  font-size: 1.1rem;
  color: #444;
  background: #fff0f5;
  padding: 1.2rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 0 10px rgba(255, 182, 193, 0.2);
  text-align: center;
  line-height: 1.6;
}

@keyframes sparkle {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) scale(0.5);
    opacity: 0;
  }
}

.sparkle {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.8;
  animation: sparkle 5s linear infinite;
  pointer-events: none;
  z-index: 999;
}
#contact {
  background: #fff5f8;
  padding: 2rem;
  border-radius: 2rem;
  margin-top: 3rem;
  text-align: center;
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: auto;
}

#contact input, #contact textarea {
  padding: 0.8rem;
  border-radius: 1rem;
  border: 1px solid #ffb6c1;
}

#contact button {
  background: #ff69b4;
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

#contact button:hover {
  background: #ff1493;
}

.floating-candy {
  position: fixed;
  font-size: 1.5rem;
  animation: floatCandy 8s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes floatCandy {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

#skills {
  background: #fffafc;
  padding: 2rem;
  border-radius: 2rem;
  margin: 3rem auto;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 192, 203, 0.3);
}

#skills h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

#skills ul {
  list-style: none;
  padding: 0;
}

#skills li {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  color: #333;
}
button {
  background-color: #ffe4f2;
  color: #d63384;
  border: none;
  padding: 6px 12px;
  margin: 5px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

button:hover {
  background-color: #ffcce6;
}

.project-title {
  margin: 10px 0 0;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
}

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

  .intro {
    padding: 1rem;
    font-size: 1rem;
  }

  .candy-jar {
    width: 90%;
    margin: auto;
  }

  #portfolio {
    grid-template-columns: 1fr !important;
    padding: 1rem;
  }

  .jar-info {
    font-size: 0.85rem;
    padding: 0.7rem;
  }

  #skills, #contact {
    padding: 1rem;
  }

  .floating-candy {
    font-size: 1.2rem;
  }

  .skills-content {
  flex-direction: column;
  gap: 1.2rem;
}


}

.skills-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.skills-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.candy-pic {
  width: 85px;
  height: auto;
  transition: transform 0.3s ease;
}

.candy-pic:hover {
  transform: rotate(10deg) scale(1.1);
}

.section-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem auto;
  padding: 0 1rem;
  max-width: 1200px;
}

#skills,
#contact {
  flex: 1 1 400px;
  background: #fff5f8;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 0 10px rgba(255, 192, 203, 0.3);
}







