@charset 'utf-8';

aside {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30vw;
  height: 100vh;
	box-sizing: border-box;
  padding: 20px 30px;
	text-align: right;
}

header {
	display: block;
	font-family: 'Ubuntu', sans-serif;
  height:1.75em;
}

header > span {
  color: #b1b6bc;
}

header #selected {
  color: #ffffff;
}

header a:hover {
	color: #ffffff;
}

nav {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
	font-size: 16pt;
	white-space: nowrap;
  height: calc(100vh - 40px - 1.75em);
}

nav ul {
  position: relative;
}
nav li {
  margin: 1em 0;
}

nav li a {
  transition: color 0.3s ease;
}

nav li a:hover {
  color: #83d3a4;
}

nav li:first-child {
  position: absolute;
  top: -20vh;
  right: 0;
}

nav #viewing {
  color: #83d3a4;
}

footer {
	display: block;
	color: #5e656d;
	font-family: 'Ubuntu', sans-serif;
  margin: 20px 0;
  font-size: 80%;
}

@media screen and (max-width: 768px) {
  header {
    font-size: 21px;
  }
}