footer { font-size: 90%; }
.home-image {
    margin-top: 7px; /* Adjust this value to control the space */
  }

.centered-tweet {
    display: flex;
    justify-content: center;
    margin: 20px 0; /* Optional: Adds space around each tweet */
  }
.home-image {
  max-width: 100%;
  height: auto;
  cursor: pointer;
  opacity: 0; /* Hide image initially */
  transition: opacity 0.5s ease-in-out; /* Smooth fade-in */
}

.home-image.loaded {
  opacity: 1; /* Show when loaded */
}
