@font-face {
  font-family: AirStream;
  src: url('Airstream.ttf') format('truetype');
}

@font-face {
  font-family: QuickSand;
  src: url('Quicksand-Regular.otf');
}
@font-face {
  font-family: QuickSand;
  src: url('Quicksand-Bold.otf');
  font-weight: bold;
}
@font-face {
  font-family: QuickSand;
  src: url('Quicksand-Italic.otf');
  font-style: italic;
}
@font-face {
  font-family: QuickSand;
  src: url('Quicksand-BoldItalic.otf');
  font-weight: bold;
  font-style: italic;
}

body {
  font-family: QuickSand;
  text-align: justify;
  margin: 0;
  padding: 0;
  background: #E0E0E0;
}

header, section {
  width: 800px;
  margin: auto;
  background: white;
  border-left: 1px solid black;
  border-right: 1px solid black;
  padding: 3px 10px;
}

header {
  text-align: center;
  font-size: 1.5em;
}

a, h1 {
  color: black;
  text-decoration: none;
}

h1 {
  font-family: AirStream;
  font-size: 1.8em;
  font-weight: normal;
}

h2 {
  font-size: 1.2em;
  border-top: 1px solid silver;
}

p {
  color: grey;
}

article {
  margin: 5px 10px;
  padding: 2px 10px;
  border: 1px solid black;
  box-shadow: 1px 1px 8px silver;
}

section:hover article:not(:hover) {
  opacity: 0.5;
}
