body {
  background: url("https://i.ibb.co/qm9X7xP/pastel-grid.png") repeat;
  font-family: "MS PGothic", "Verdana", sans-serif;
  color: #333;
  text-align: center;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 800px;
  margin: auto;
  background: rgba(255, 255, 255, 0.8);
  border: 3px double #ffb6c1;
  padding: 20px;
  box-shadow: 0px 0px 20px #f9c;
}

header h1 {
  font-family: "Comic Sans MS", cursive;
  color: #ff69b4;
  text-shadow: 2px 2px #fff;
}

.tagline {
  font-size: 14px;
  color: #666;
  margin-top: -10px;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin: 0 10px;
}

nav a {
  text-decoration: none;
  font-weight: bold;
  color: #ff69b4;
  background: #fff0f5;
  padding: 5px 10px;
  border: 1px solid #ffb6c1;
  border-radius: 5px;
}

nav a:hover {
  background: #ffb6c1;
  color: white;
}

main h2 {
  color: #ff69b4;
  border-bottom: 2px dashed #ffb6c1;
  padding-bottom: 5px;
}

footer {
  font-size: 12px;
  color: #999;
  margin-top: 20px;
}

