* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #05070f;
  color: #eaf0ff;
}

/* MASTHEAD */

.masthead {
  background: #0b1cff;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 6px solid #000000;
}

.masthead h1 {
  font-size: 3.2rem;
  letter-spacing: 2px;
}

.masthead p {
  margin-top: 10px;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
}

/* COMIC WALL */

.wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
  padding: 30px;
  background: #0a0f2a;
}

.comic {
  position: relative;
  border: 4px solid #000000;
  background: #000000;
}

.comic img {
  width: 100%;
  display: block;
}

/* ISSUE LABEL */

.label {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #0b1cff;
  color: #ffffff;
  padding: 6px 10px;
  font-size: 0.7rem;
  letter-spacing: 1px;
  border-top: 3px solid #000000;
  border-right: 3px solid #000000;
}

/* ABOUT */

.text {
  padding: 40px 30px;
  max-width: 700px;
}

.text h2 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  border-bottom: 4px solid #0b1cff;
  display: inline-block;
}

.text p {
  margin-top: 10px;
  line-height: 1.7;
  color: #cfd8ff;
}

/* FOOTER */

footer {
  padding: 16px;
  text-align: center;
  background: #000000;
  color: #9aa8ff;
  font-size: 0.8rem;
}
