/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
body {
  background: #f7d5f7 url("homepage.jpg");
  background-size: contain;
  background-attachment: fixed;
  background-position: center;
  font-family: "VT-100", fixedsys, System, monospace;
  font-size: 13px;
}
body {
background-color: #fdf6f0;  font-family: 'Segoe UI', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background-color: #ffe5ec;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #ffb3c6;
}

nav {
  background-color: #ffccd5;
  padding: 10px;
  text-align: center;
}

nav a {
  color: #4b2e2e;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

main {
  padding: 20px;
}

footer {
  background-color: #ffd6e0;
  text-align: center;
  padding: 10px;
  font-size: 0.9em;
}
