/* 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: #82c;
  background-image: linear-gradient(
    150deg,
    #c4b,
    #328
  );
  background-attachment: fixed;
  color: black;
  font: 20px "Times New Roman","Liberation Serif",serif;
}

.main-content {
  box-sizing: border-box;
  background-color: #eee;
  width: 100%;
  max-width: 105ch;
  padding: 0 1em;
  border: 1.5em white solid;
  margin: auto;
  box-shadow: 0 0 10px black;
}

h1 {
  font: bold 2em "Helvetica","Arial","Liberation Sans",sans-serif;
}

h2 {
  font: bold 1.5em "Helvetica","Arial","Liberation Sans",sans-serif;
}

h3 {
  font: bold 1em "Helvetica","Arial","Liberation Sans",sans-serif;
}

a:link {
  color: #03d;
  text-decoration: underline;
}

a:visited {
  color: #739;
  text-decoration: underline #c8f;
}

a:hover {
  color: #a00000;
  text-decoration: 2px underline;
}

a:active {
  color: white;
  background-color: #c00;
  text-decoration: underline;
}
  