body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #e6ecf0;
  color: #14171a;
}

header {
  background-color: #1da1f2;
  color: white;
  padding: 1em;
  text-align: center;
  position: sticky;
  top: 0;
}

.back {
  color: white;
  text-decoration: none;
  position: absolute;
  left: 10px;
  top: 20px;
}

main {
  max-width: 600px;
  margin: 0 auto;
  padding: 1em;
}

.tweet {
  background: white;
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

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

.tweet a {
  color: #1da1f2;
  text-decoration: none;
}

.tweet small {
  display: block;
  color: #657786;
  margin-top: 5px;
  
}
.perfil-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.perfil-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
}

.menu-link {
  position: absolute;
  right: 10px;
  top: 20px;
  color: white;
  text-decoration: none;
  font-size: 0.9em;
  background-color: #1991da;
  padding: 6px 10px;
  border-radius: 20px;
}
.menu-link:hover {
  background-color: #0d8bd6;
}
