@import url('https://fonts.googleapis.com/css?family=Nunito+Sans:100,200,300,400,500,600,700,800,900');

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.contents {
  font-family: 'Nunito Sans', 'Avenir', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: rows;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.panel {
  flex: 1 1 100%;
  font-size: 20pt;
  font-weight: 200;
  text-align: center;
  color: #888;
  margin: auto;
}

.title {
  font-size: 3vw;
}

.entries {
  flex: 1 1 100%;
  font-size: 1.6vw;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.spacing {
  margin-bottom: 0.6em;
}

a:link {
  text-decoration: none;
  color: #888;
}

a:visited {
  color: #888;
}

a:hover {
  color: orange;
}

