/* Limit the width of the main content */
main {
  max-width: 800px;
  margin: 0 auto;
}

/* Style the aside section */
aside {
  width: 300px;
  margin: 20px auto;
  border: 1px solid #333;
  padding: 15px;
  background-color: #f0f0f0;
  color: #222;
}

/* Style the image inside aside */
aside img {
  width: 200px;
  height: auto; /* keeps aspect ratio */
}

/* Profile image inside main */
main img {
  width: 150px;
  height: auto;
  border-radius: 8px;
}

/* Reset padding for all paragraphs */
p {
  padding: 0;
}

/* Footer styling */
footer {
  margin-top: 20px;
  border-top: 2px solid #333;
  text-align: center;
  padding-top: 10px;
}
