@charset "UTF-8";

/* The background we just coded*/
body {
  background:pink repeat fixed url(http://i256.photobucket.com/albums/hh183/Leti_chan/Gifs/tumblr_lnd6plV3cM1ql201ao1_500.gif);
}

/* 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;
}