/* ====== Global ====== */
body {
  margin: 0;
  padding: 0;
  font-family: Courier, monospace;
  background: #fff;
  color: #000;
}

/* ====== Centered Layout ====== */
#main1 {
  font-size: 12px;
  text-align: left;
  margin: 0 auto;
  width: 600px;
  height: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ====== Title ====== */
h3 {
  margin: 0 0 12px 0;
  font-weight: bold;
  font-size: 14px;
}

/* ====== Links ====== */
a.link {
  display: inline-block;
  margin: 4px 0;
  font-size: 12px;
  font-weight: normal;
  text-transform: lowercase;
  color: #000;
  text-decoration: none;
}

a.link:hover {
  color: red;
  text-decoration: underline;
}

/* ====== Image ====== */
.image img {
  max-width: 100%;
  height: auto;
  border: 0; /* no border */
}
