/*
  * `body`
  * The background color is `#efeee7`.
  * The font used `"Georgia",Times New Roman,Times,serif;`.
  * The font color is `#333333`.
  * Be sure to zero out the body margins and padding so the page is flush to the top of the page:
    
```          body {
       margin: 0;
       padding: 0;
     }
     ```
* `header`
  * The background color is `#333333`.
* `h1`
  * The font color is `#eee`.
  * The font size is `28px`.
  *********** Look at the example on the screen, and eyeball the padding and/or margins and positioning of the text.
* `h2`
  * The font size is `24px`
* Make the container have a width of 1024 pixels, and center it. You do this using `margin: 0 auto;`.
* Make `#main-bio`, `#contact-info`, `#bio-image` all `float: left`.
* Make the `#bio-image` have a width of 200 pixels.
* Be sure to include `alt` text in all images
* `#main-bio` should have a width of `70%`.
  ************** Add margins to the image so there is distance between it and the bio text.
* `#content-info` should have a width of `30%`.
* Adjust the line height so it is 1.5 times the size of the font.
* Make the link color `#d21034`.

* If you forgot how to write the CSS properties, you can reference all CSS properties here <https://developer.mozilla.org/en-US/docs/Web/CSS/Reference>

* Bonus:

* Stage, commit, and push this new file to Github. (edited)
  -->
*/
body {
    margin: 0;
    padding: 0;
    background: #efeee7;
    font-size: 18px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 150%;
    color: #333333;
}

header {
    background: #333333;
}

h1 {
    color: #eee;
    font-size: 28px;
    margin: 0;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
}

.container {
    width: 1024px;
    margin: 0 auto;
}

#main-bio {
    float: left;
    width: 68%;
}

#contact-info {
    float: left;
    margin-left: 20px;
    width: 30%;
}

#bio-image {
    float: left;
    width: 200px;
    height: 240px;
    margin-right: 20px;
}

a {
    color: #d21034;
}