/* Reset some default styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Apply the mushroom color scheme */
body {
    background-color: #fff2e8; /* Light cream background color */
    font-family: 'Times New Roman', serif;
}

/* Style the header */
header {
    background-color: #a88f82; /* Light brown header background color */
    padding: 10px;
    text-align: center;
}

/* Style the profile banner */
.profile-banner img {
    width: 100%;
    height: auto;
}

/* Style the profile section */
.profile {
    background-color: #f8e5d2; /* Pale peach background color for profile section */
    padding: 20px;
    margin: 20px;
    text-align: center;
	
}

/* Style the "Add Friend" button */
.add-friend {
    background-color: #a88f82;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

/* Style the posts section */
.posts {
    background-color: #f8e5d2;
    padding: 20px;
    margin: 20px;
}

.post {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #d9c6b6; /* Light brown border color */
}

/* Style the friends list */
.friends-list {
    background-color: #f8e5d2;
    padding: 20px;
    margin: 20px;
    text-align: center;
}

.friends-list h2 {
    margin-bottom: 10px;
}

.friend {
    margin-bottom: 10px;
}

img.friendo {
    width: 2%;
    height: auto; /* Maintain the aspect ratio */
}
/* Style the "See More" button */
.see-more {
    background-color: #d9c6b6;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
}
.logo img{
    width: 5%;
    height: auto;
}

.info {
	display: inline-block;
  border: 2px solid #a88f82;
  background-color: #fff2e8;
  padding: 10px; /* Optional: Add padding to increase spacing between content and border */
}

.pst {
  border: 2px solid #a88f82;
  border-radius: 10px; /* Adjust the border-radius to control the amount of rounding */
  background-color: #fff2e8;
  padding: 10px; /* Optional: Add padding to increase spacing between content and border */
}
img.pfp {
    width: 2%;
    height: auto; /* Maintain the aspect ratio */
}


.cmnt {
	
  border: 2px solid #a88f82;
  border-radius: 10px; 
  background-color: #fff2e8;
  padding: 10px; 
}

.invis {
  display: none;
}



  .pstimg {
    width: auto; /* Set your desired fixed width */
    height: 700px; /* Set your desired fixed height */
    object-fit: cover; /* Ensures the image fits without distortion */
    user-drag: none; /* Prevent image dragging */
    user-select: none; /* Prevent image selection */
  }