html {
  background-color: black;
}
html.nanda {
  background-image: url('/other/nandacu.png');
  background-size: cover;
}

body {
  display: flex;
  flex-direction: column;
  margin: auto;
  height: 100vh;
  color: white;
  font-family: 'Courier New', Courier, monospace;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .1 em;
  margin: 1.5em auto;
  width: 100%;
  color: lightsteelblue;
  font-size: 2em;
  text-align: center;
}

main {
  flex: 1;
  margin: auto;
  width: 800px;
}

p.description {
  text-align: center;
}

ul.links {
  margin: 2em auto;
  padding: 0;
  text-align: center;
  list-style: none;
}

ul.links > li {
  margin: .5em auto;
}

a:not(:hover) {
  text-decoration: none;
}

img.people {
  display: block;
  margin: 2em auto;
  max-height: 400px;
  border-radius: 25px;
  filter: blur(1px);
}

a {
  color: steelblue;
}

.bottom-text {
  margin: 2em auto;
  text-align: right;
  font-style: italic;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .8em;
  width: 100%;
  padding: 1.8em 0;
  background-color: #111b;
  color: lightsteelblue;
  text-align: center;
}
