@charset "UTF-8";

body {
  Â background:pink repeat fixed url(https://lh4.googleusercontent.com/-R5p3yDMr8as/UjkgXZ2obhI/AAAAAAAABJs/VJ0x8Jp4dS4/s1077-no/cartoon_dessert_background_01_vector.jpg);
  width:900px;
/*added code*/
  margin:0 auto;
}

/* Heading area. We'll change the color of the background and the text color in this section. We'll make the background color maroon and the text white.*/
.heading {
  background-color:maroon;
  color:#FFFFFF;
}

/* Content area. Let's make the background white and opaque (a little see-through. You don't have to add it in if you don't want opacity. */
.profile_section_background {
  background-color:#FFFFFF;
  opacity:.7;
}

/*Labels and Values. Let's make them dark grey. We can combine them together because we want them to have the same text color. */
.label .value {
  color:#545454;
}