/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

.profile-pic {
    width: 300px;      /* You can change 300px to whatever size you prefer */
    height: auto;       /* This ensures the image doesn't look stretched */
    border-radius: 8px; /* Optional: This adds nice rounded corners */
    display: block;     /* Optional: This helps with centering if needed */
    margin: 10px 0;    /* Adds some space above and below the image */
}
