nav {
  color: white;
  background-color: #1da1f2;
  display: flex;
  align-items: center;
  height: 70px;
}

section {
  margin: 2rem;
}

.tweets-section {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 30%;
  margin-left: 20px;
}

.tweets-section h2 {
  margin: 0;
}

.tweets {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tweet {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: left;
}

.tweet-content {
  display: flex;
  flex-direction: row;
  align-items: top;
  gap: 1em;
}

.tweet-content img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.tweet-content .date {
  color: #999;
  font-size: 0.8em;
  margin-top: 1em;
}

.tweet-content .badge {
  background-color: #1da1f2;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8em;
  margin-bottom: 1em;
}

.replies {
  display: flex;
  flex-direction: column;
  margin-top: 1em;
}

.reply {
  display: flex;
  flex-direction: row;
  align-items: top;
  gap: 1em;
}

.reply img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.reply p {
  font-size: 0.8em;
}

.reply .name {
  font-size: 0.8em;
}

.reply .date {
  color: #999;
  font-size: 0.8em;
  margin-top: 0;
}

.name {
  font-weight: bold;
  color: #1da1f2;
}

footer {
  background-color: #1da1f2;
  color: white;
  padding: 20px;
  text-align: center;
  bottom: 0;
}

.who-to-follow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1em;
}

.who-to-follow img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.who-to-follow .name {
  font-weight: bold;
  color: #1da1f2;
}

.trending {
  margin-top: 2rem;
}

.trending li {
  margin-bottom: 10px;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 2rem;
}

.profile img {
  width: 200px;
  height: 200px;
  border-radius: 25%;
  object-fit: cover;
}

.profile .text-part {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.voting-closed {
  margin-bottom: 0.5em;
  color: #999;
  font-size: 0.8em;
}

.search-form {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.search-form input {
  margin: 0 2rem;
  border-radius: 20px;
  border: 1px solid #ddd;
  width: 55vw;
  min-width: 200px;
  max-width: 500px;
}

.hashtag {
  color: #1da1f2;
}

.likes-dislikes {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1em;
}

.liked-disliked-by {
  color: #999;
  font-size: 0.8em;
}
