body {
    background:#f8dde8;
    color: #4b2c20;
    font-family: "Comic Sans MS", cursive;
    margin: 0;
    cursor: url("assets/pictures/cursor.png"), auto;
  }
  
  #stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle, #ffc2da 1px, transparent 1px);
    background-size: 80px 80px;
    animation: twinkle 8s infinite linear;
  }
  @keyframes twinkle {
    0% {opacity: 0.8;}
    50% {opacity: 0.4;}
    100% {opacity: 0.8;}
  }
  
  header {
    text-align: center;
    background-color: #c981f8;
    border-bottom: 3px double #9200cc;
    padding: 15px;
  }
  
  h1 {
    font-size: 2.5em;
    color: #d12961;
    margin-bottom: 5px;
  }
  
  nav {
    text-align: center;
    background: #ffdce3;
    padding: 8px;
    border-bottom: 2px solid #ffadc6;
  }
  
  nav a {
    color: #a84c68;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
  }
  nav a:hover {
    color: #c43657;
    text-decoration: underline;
  }
  
  main {
    width: 90%;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.85);
    margin: 30px auto;
    padding: 20px;
    border: 2px dotted #ffb6c1;
    border-radius: 10px;
  }
  
  .float-pic {
    float: right;
    width: 120px;
    margin-left: 15px;
  }
  
  .updates ul {
    list-style: none;
    padding-left: 0;
  }
  .updates li {
    margin-bottom: 8px;
  }
  
  footer {
    text-align: center;
    font-size: 0.9em;
    background: #ffdce3;
    border-top: 3px double #ffb6c1;
    padding: 10px;
    color: #7a3e53;
  }
  
  a, h1, h2 {
    text-shadow: 0 0 5px #fff0f5, 0 0 10px #ffc0cb;
  }

  .gallery {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-item {
  text-align: center;
}

.gallery-item img {
  width: 230px;
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item img:hover {
  transform: scale(1.2);
}

.gallery-item span {
  display: block;
  margin-top: 6px;
  font-size: 0.85em;
  color: #a84c68;
}

.like-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: #d12961;
  font-size: 1.1em;
}

.like-btn .heart {
  margin-right: 4px;
}

.like-btn.liked .heart {
  color: #ff2f6d;
}

@keyframes pop {
  0% { transform: scale(1); }
  30% { transform: scale(1.4); }
  60% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.like-btn.pop {
  animation: pop 0.3s ease;
}

.home-btn {
  display: block;
  text-align: center;
  margin-top: 20px;
}

.home-btn img {
  width: 230px;
  cursor: pointer;
  transition: transform 0.2s ease;
  border-radius: 12%;
}

.home-btn img:hover {
  transform: scale(1.05);
}

#hello-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 400;
  height: 400%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

#hello-img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw;   
  height: auto;
  z-index: 99999;
  display: none;
  pointer-events: none;
}

@keyframes shake {
  0% { transform: translate(2px, 2px); }
  25% { transform: translate(-2px, 2px); }
  50% { transform: translate(2px, -2px); }
  75% { transform: translate(-2px, -2px); }
  100% { transform: translate(2px, 2px); }
}