/* 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." */

html {
  background-color: white;
}

.coral-pixels-regular {
  font-family: "Coral Pixels", serif;
  font-weight: 400;
  font-style: normal;
}

h1, h2, h3, .special, .footer {
  font-family: "Coral Pixels", serif;
}

body {
  color: black;
  font-family: "Helvetica", sans-serif;
  padding: 20px;
  width: 850px;
  font: 1em / 1 system-ui;
  margin: 0px auto 0px auto;
}

.special.time, .special.note {
  padding: 20px;
}

a {
  color: blue;
  padding: 5px;
  border: 1px solid blue;
  width: 100px;
  margin: 2px;
}

a:hover, a:focus {
text-decoration: none;
}

.footer {
  color: #6E6E6E;
  padding: 100px;
}
