
/* instagram css */
body {
  margin: 0;
  background-color: #000;
  font-family: Arial, sans-serif;
  color: #fff;
}

.insta-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.insta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}

.profile-pic img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.profile-info {
  flex-grow: 1;
  padding: 0 20px;
}

.profile-info h2 {
  font-size: 24px;
  margin: 0 0 5px;
}

.profile-info p {
  font-size: 16px;
  margin-bottom: 10px;
}

.profile-stats {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.auth-buttons button {
  margin-left: 10px;
  background-color: #0095f6;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
}

.auth-buttons button:hover {
  background-color: #0077cc;
}

.highlights {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  justify-content: center;
}

.highlight {
  text-align: center;
}

.highlight img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.highlight p {
  margin-top: 8px;
  font-size: 14px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.post img {
  width: 100%;
  height: auto;
  display: block;
}

/* twiiter */



