/* --- Base Reset --- */
* {
  box-sizing: border-box;
}

/* --- Background + Typography --- */
body {
  background-color: #111;
  color: #e8e3d9;
  font-family: "Courier New", Courier, monospace;
  max-width: 750px;
  margin: 60px auto;
  padding: 20px;
  line-height: 1.6;
}

/* --- Big Rough Header --- */
h1 {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #f04e30;
  border-bottom: 3px solid #f04e30;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

/* --- Paragraphs --- */
p {
  margin-bottom: 20px;
}

/* --- List Styling --- */
ul {
  list-style-type: square;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

/* --- Links --- */
a {
  color: #f04e30;
  text-decoration: none;
  border-bottom: 1px dotted #f04e30;
}

a:hover {
  background-color: #f04e30;
  color: #111;
}

/* --- Images --- */
img {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  border: 4px solid #e8e3d9;
  filter: contrast(110%) grayscale(20%);
}
.content {
  background-color: #2a2a2a;
  padding: 30px;
  border: 2px solid #e8e3d9;
  box-shadow: 6px 6px 0px #f04e30;
}

/* --- Slight DIY Imperfection --- */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.02),
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 2px
  );
}