/* 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." */

/* Handle basic element styling */
/* ---------------------------- */
body {
  font:
    1em/150% Helvetica,
    Arial,
    sans-serif;
  padding: 1em;
  margin: 0 auto;
  max-width: 50em;
}

@media (width >= 70em) {
  /* Increase the global font size on larger screens or windows
     for better readability */
  body {
    font-size: 130%;
  }
}
h1 {
  font-size: 1.5em;
  color:brown;
}

/* Handle specific elements nested in the DOM */
div p,
#id::first-line {
  background-color: lightyellow;
  border-radius: 3px;
}
a:link {
  color: orange;
}
a:hover {
  text-decoration:none;
}
a:visited {
  color: yellow;
}

div p {
  margin: 0;
  padding: 1em;
}

div p + p {
  padding-top: 0;
}
.outer {
  border: 3px solid black;
  margin: 30px;
  width:100px;
  height:140px;
  background-color: rebeccapurple;
  color: white;
}  

padding: 10px 15 px 15 px 5px

background: red url("bg-graphic.png) 10 px 10 px repeat-x fixed;

border-bottom: dotted;

