
body {
  background: #0d0b1f;
  color: white;
  font-family: sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}
header {
  padding: 20px;
}
#logo {
  height: 80px;
}
.cta {
  background: #e100ff;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}
.tweet-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px;
}
.tweet-card {
  background: #1c1c2e;
  padding: 15px;
  border-radius: 12px;
  width: 300px;
}
.tweet-img {
  max-width: 100%;
  border-radius: 8px;
  margin-top: 10px;
}
.tweet-author {
  font-size: 0.9em;
  color: #aaa;
}
.tweet-link {
  display: block;
  margin-top: 10px;
  color: #1da1f2;
}
