
/* --- Global Rainbow Heading Style --- */
@keyframes rainbowMove {
    from { background-position: 0%; }
    to { background-position: 200%; }
}

.gif-heading, .section-heading {
    text-align: center;
    font-family: "Comic Sans MS", cursive;
    background: linear-gradient(90deg, red, orange, yellow, lime, blue, purple);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbowMove 3s linear infinite;
    margin-bottom: 10px;
}

/* --- The Boxes (Rectangle Vertical Shape) --- */
/* Added .custom-gif-container for your new box */
.gif-container, .stamp-container, .button-container, .custom-gif-container {
    background: linear-gradient(180deg, #4b0082, #2b0040);
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 15px;              
    padding: 15px;
    max-height: 500px;
    overflow-y: auto;
    border: 2px solid hotpink;
    border-radius: 10px;
    width: fit-content;     
    min-width: 180px;
}

/* --- Layout Positioning --- */

/* NEW: This container holds both the "Gifs I Like" and "Blinkies" side-by-side */
.top-row {
    display: flex;
    justify-content: flex-end; /* Pushes the whole group to the right */
    gap: 30px;                 /* Space between Gifs and Blinkies */
    margin-bottom: 40px;
}

.bottom-row {
    display: flex;
    justify-content: flex-end; 
    gap: 50px; 
}

/* Image Rendering */
img { image-rendering: pixelated; display: block; max-width: 100%; }

/* Scrollbar Style */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-thumb { background: purple; border-radius: 5px; }

/* --- Blog Box Style --- */
.blog-container {
  width: 200px;
  height: 300px; /* Adjust height as needed */
  background: #fff; /* Plain white background */
  border: 2px solid #000; /* Simple black border */
  padding: 10px;
  display: flex;
  flex-direction: column;
  color: #000; /* Black text */
}

/* Default Title Style */
.blog-title {
  text-align: center;
  font-family: "Comic Sans MS", cursive;
  margin-top: 0;
  margin-bottom: 10px;
  color: #000;
}

/* Rainbow Hover Effect */
.blog-container:hover .blog-title {
  background: linear-gradient(90deg, red, orange, yellow, lime, blue, purple);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbowMove 3s linear infinite;
}

/* Scrollable Text Area */
.blog-content {
  flex-grow: 1;
  overflow-y: auto;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.4;
  padding-right: 5px;
}


