/*

This will enable the font size to scale with the window size.

*/

@media only screen and (min-width: 0px) {
  body { font-size: 0.4em; }
  #links { width: 80%; }
  #pubkey { font-size: 0.65em; }
}

@media only screen and (min-width: 520px) {
  body { font-size: 0.4em; }
  #links { width: 35%; }
  #pubkey { font-size: 0.65em; }
}

@media only screen and (min-width: 635px) {
  body { font-size: 0.5em; }
  #pubkey { font-size: 0.65em; }
}

@media only screen and (min-width: 785px) {
  body { font-size: 0.6em; }
  #pubkey { font-size: 0.655em; }
}

@media only screen and (min-width: 890px) {
  body { font-size: 0.7em; }
  #pubkey { font-size: 0.655em; }
}

@media only screen and (min-width: 1040px) {
  body { font-size: 0.8em; }
  #pubkey { font-size: 0.66em; }
}

@media only screen and (min-width: 1160px) {
  body { font-size: 0.9em; }
  #pubkey { font-size: 0.67em; }
}

@media only screen and (min-width: 1350px) {
  body { font-size: 1em; }
  #pubkey { font-size: 0.7em; }
}

