body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

header {
  background-color: white;
  width: 100%;
  text-align: center;
  padding: 0px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

button {
  margin: 5px;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

.pfp img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

#content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.scrollable-posts {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 600px;
  max-height: 60vh;
  overflow-y: scroll;
  margin-top: 20px;
  align-self: center;  /* Ensures the container is centered */
}

.posts-container {
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers the posts */
}

.post {
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  text-align: center;  /* Centers the text inside the posts */
}

.post:nth-child(odd) {
  background-color: #ffd700; /* Gold */
  color: black;
}

.post:nth-child(even) {
  background-color: black;
  color: gold;
}

.post-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}

.post-content {
  margin-top: 10px;
}

.nft {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nft img {
  width: 256px; /* Standard width for NFT images */
  height: 256px; /* Standard height for NFT images */
  object-fit: cover; /* Ensure the image covers the area while maintaining aspect ratio */
}

.scrollable-nfts {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 600px;
  max-height: 60vh;
  overflow-y: scroll;
  margin-top: 20px;
  align-self: center;  /* Ensures the container is centered */
}

#login-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#metamask-icon {
  width: 318.6px;
  height: 318.6px;
  cursor: pointer;
}

.metamask-img {
  width: 100%;
  height: 100%;
  cursor: pointer; /* Changes cursor to pointer when hovering over the SVG */
}

#login-footer {
  font-size: 1rem;
  color: #333;
  text-align: center;
  margin-top: 20px; /* Adds spacing between the SVG and the footer */
}

footer {
  margin-top: 20px;
  text-align: center;
}

footer h3 {
  margin: 0;
}

.link-container {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.link-container a {
  text-decoration: none;
}

.link-container img {
  vertical-align: middle;
}
