/* === GAYA DASAR HALAMAN === */
body {
  background-color: #f4f1ee;
  color: #2c2c2c;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  line-height: 1.8;
  padding: 30px;
  max-width: 700px;
  margin: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #ccc;
}

/* === JUDUL === */
h1, h2, h3 {
  font-family: 'Courier New', Courier, monospace;
  text-transform: uppercase;
  border-bottom: 2px solid #aaa;
  padding-bottom: 5px;
  margin-top: 40px;
  letter-spacing: 1px;
}

/* === BLOK TULISAN MESIN TIK === */
.typewriter {
  white-space: pre-wrap;
  background-color: #ffffff;
  border: 2px dashed #ccc;
  padding: 20px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 1.8;
  color: #222;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

/* === LINK === */
a {
  color: #004477;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* === GARIS PEMBATAS === */
hr {
  border: none;
  border-top: 1px dashed #aaa;
  margin: 40px 0;
}

/* === PARAGRAF === */
p {
  margin-bottom: 1.2em;
}