@font-face {
  font-family: Unifont;
  src: url(/unifont-17.0.01.otf);
}


html, body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50%;
  background-attachment: fixed;
  height: 100vh;
  width: 100vw;

  font-size: clamp(14px, 3vw, 22px);
}

main {
  font-family: 'Unifont', sans-serif;
  color: #000;
  line-height: 1.5em;
  max-width: 700px;
  padding: 0 1.5rem;  
}
#title {
  font-size: 1.5em;
  padding-bottom: 0.75em;
}

#links {
  border: 1.5px solid #000;
  padding: 1.5em;
  background-color: #777;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  body {
    background-size: 120%;
  }

  #title {
    font-size: 1.2em;
  }

  #links {
    padding: 1em;
  }
}
a {color: #aaa; text-decoration: none;}

a:hover {color :#fff;text-decoration: underline;}

hr {border: none; border-top: 1.5px solid #888}

