

body {
  background-image: url("tile.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* optional, keeps it still when scrolling */
font-family: 'Baloo 2'
}


.blog-list {
  width: 300px;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 9px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  
  margin-left: 40px;    /* 👈 this creates the soft gap from left edge */
  margin-right: 30px;   /* space between box and main content */
  margin-top: 40px;
}





.blog-list h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #fcb2f6;
}

.blog-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-list li {
  margin-bottom: 10px;
}

.blog-list a {
  text-decoration: none;
  color: #9ffff1 ; /* soft pink/purple */
  font-size: 18px;
  transition: color 0.2s ease;
}

.blog-list a:hover {
  color: #00f3ff ; /* brighter on hover */
}
.main-content {
  flex: 1; /* takes remaining space */
  margin:20px;
}
.blog-box {
  animation: glowPulse 3s infinite alternate;
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 10px #00ffff; }
  100% { box-shadow: 0 0 25px #00ffff; }
}
 
.home-star {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 28px;
  text-decoration: none;
  color: white; /* soft yellow */
  text-shadow:
    0 0 6px cyan,
    0 0 12px cyan,
    0 0 18px #fff176;
  z-index: 1000;
  transition: transform 0.2s ease-in-out;
}

.home-star:hover {
  transform: scale(1.3) rotate(10deg);
  text-shadow:
    0 0 10px #fff,
    0 0 18px #ffeb3b,
    0 0 30px #ffff66;
  color: white;
  cursor: pointer;
}


.soap-img {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 300px;        /* make it small */
  height: 300px;       /* small height too */
  z-index: 999;
  pointer-events: none;
}
.stamp-container {
  text-align: right;
}
.stamp-container img {
  margin: 5px;
}
.bubble {
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  animation: floatUp 8s infinite ease-in;
}
@keyframes floatUp {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-100vh); opacity: 0; }
}
