@media (min-width: 768px) {
  .feed-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hashtags{
color:blue;
font-weight:110%;

}

.feed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

  body {
    font-family: 'Segoe UI', sans-serif;
    background: #f4f4f8;
    margin: 0;
    color: #333;
  }

  header {
    background: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  header img {
    max-width: 100%;
    height: auto;
  }

  main {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
  }

  h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .feed {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px r
  }
  .navbar {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: #333;
  text-decoration: none;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #0073e6;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.nav-links a:hover {
  color: #005bb5;
}
.site-footer a {
  color: #0073e6;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer svg {
  vertical-align: middle;
  margin-right: 4px;
}
  .site-footer {
  background: #f0f0f0;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9em;
  color: #666;
  border-top: 1px solid #ddd;
  margin-top: 40px;
}
.twitter-embed {
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
}

.twitter-embed h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.tweet {
      background: white;
      border-radius: 10px;
      padding: 15px 20px;
      margin-bottom: 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .tweet p {
      font-size: 1rem;
      margin-bottom: 10px;
    }

    .tweet time {
      font-size: 0.85rem;
      color: #888;
    }
