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

/* i) BACKGROUND */
body {
  background-color: #e5e5e1; /* Dirty, off-white concrete/paper */
  margin: 0;
  padding: 40px;
  font-family: "Malgun Gothic", sans-serif; /* Standard Korean UI font */
}

/* ii) HEADER */
h1, h2, h3 {
  color: #1a1a1a; /* Harsh black */
  text-transform: uppercase;
  letter-spacing: -1px; /* Tight "Corporate" spacing */
  border-left: 5px solid #7a1d1d; /* Blood-shadow red accent */
  padding-left: 15px;
}

/* iii) BODY TEXT */
p, li, div {
  color: #4a4a4a; /* Dark gray for readability */
  line-height: 1.8;
  font-size: 15px;
}

/* Links - A "Warning" Orange/Yellow common in Lain's world */
a {
  color: #d97b00;
  font-weight: bold;
}