@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
  background-color: #a0dfff; /* arcade sky-blue */
  color: #001f33;
  font-family: 'Press Start 2P', monospace;
  margin: 0;
  padding: 2rem;
  text-align: center;
  line-height: 1.8;
}

h1 {
  color: #004466;
  background-color: #fffcb0;
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 3px solid #222;
  box-shadow: 3px 3px 0 #000;
  font-size: 1.2rem;
}

.tagline {
  font-size: 0.75rem;
  color: #333;
  margin-top: 1rem;
  margin-bottom: 2rem;
  background-color: #fff;
  padding: 0.5rem;
  display: inline-block;
  border: 2px dashed #006699;
}

.section {
  margin: 2rem auto;
  padding: 1rem;
  border: 3px solid #333;
  background: #ffefb3;
  box-shadow: 4px 4px 0 #222;
  max-width: 480px;
  border-radius: 4px;
}

h2 {
  color: #002244;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

p {
  font-size: 0.65rem;
  color: #222;
  line-height: 1.5;
}

a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.65rem;
  background: #55ffee;
  color: #001f33;
  text-decoration: none;
  border: 2px solid #000;
  box-shadow: 2px 2px 0 #111;
  transition: all 0.2s ease-in-out;
}

a:hover {
  background: #fffcb0;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 3px 3px 0 #000;
}

footer {
  margin-top: 4rem;
  font-size: 0.65rem;
  color: #333;
  text-shadow: none;
}

