body {
  font-family: Arial, sans-serif;
  background-color: #f5f8fa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
.tweet {
  width: 550px;
  background-color: #fff;
  border: 1px solid #e1e8ed;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.tweet-header {
  display: flex;
  align-items: center;
}
.tweet-header img {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin-right: 10px;
}
.tweet-header .user-info {
  display: flex;
  flex-direction: column;
}
.tweet-header .user-info .name {
  font-weight: bold;
  font-size: 16px;
}
.tweet-header .user-info .username {
  color: #657786;
  font-size: 14px;
}
.tweet-header .follow-button {
  margin-left: auto;
  background-color: #1da1f2;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 5px 15px;
  cursor: pointer;
}
.tweet-content {
  margin-top: 10px;
}
.tweet-content .text {
  font-size: 16px;
}
.tweet-content .link-preview {
  display: flex;
  align-items: center;
  border: 1px solid #e1e8ed;
  border-radius: 8px;
  margin-top: 10px;
  padding: 10px;
  background-color: #f5f8fa;
}
.tweet-content .link-preview img {
  width: 60px;
  height: 60px;
  margin-right: 10px;
}
.tweet-content .link-preview .link-info {
  display: flex;
  flex-direction: column;
}
.tweet-content .link-preview .link-info .title {
  font-weight: bold;
  font-family: Times, sans-serif;
}
.tweet-content .link-preview .link-info .description {
  color: #657786;
  font-size: 14px;
}
.tweet-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.Like Icon{
  width: 3%;
  height: 10%;
}