/* 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: white;
  color: black;
  font-family: Verdana;
}
**/

/* =========================
   Basic page styles
   ========================= */

body {
  background-color: #111;
  color: #ddd;
  font-family: Arial, sans-serif;
  max-width: 800px;
  margin: 0 0 0 40px;
  padding: 40px 20px;
  line-height: 1.6;
  background-image: url("/pinklain2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}


/* =========================
   Headings
   ========================= */

h1 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 30px;
}


/* =========================
   Links
   ========================= */

a {
  color: #8ab4f8;
  text-decoration: none;
}

a:hover {
  color: #fff;
  text-decoration: underline;
}


/* =========================
   Profile categories
   ========================= */

p {
  color: #fff;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 5px;
}


/* =========================
   Lists
   ========================= */

ul {
  margin-top: 5px;
  padding-left: 25px;
}

li {
  margin-bottom: 5px;
}