@font-face {
  font-family: "Terminus";
  src: local("Terminus (TTF) for Windows"), local("Terminus (TTF)"),
    url(/fonts/TerminusTTF-4.49.2.woff), local("Terminus");
  font-weight: normal;
  font-style: normal;
}

html,
body {
  font-family: "Terminus", monospace;
/*  font-family: "Consolas", monospace; */
  overflow: hidden;
  font-size: 16px;
}

img {
  padding: 3px;
}

p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

h1 {
  font-size: 32px;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.wrapper {
  width: 50vw;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 25vh;
  left: 25vw;
  text-align: center;
  max-width: 50vw;
}

.center {
  display: flex;
  align-items: center;
  flex-direction: column;
}

/*
a,
a:visited,
a:hover,
a:active,
a:link {
  color: #64D8F1;
} */

.rightfooter {
  position: absolute;
  bottom: 0;
  right: 0;
/*  height: 100vh; */
  width: 100vw;
  text-align: right !important;
  align-items: right !important;
  padding: 10px;
  max-width: 50vw;
  margin: auto !important;
}

.topleft {
  position: absolute;
  top: 0;
  left: 0;
  text-align: left !important;
/*  height: 100vh; */
  width: 100vw;
  padding: 10px;
  align-items: left !important;
  max-width: 50vw;
  margin: auto !important;
}

.leftfooter {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left !important;
  width: 100vw;
/*  height: 100vh; */
  padding: 10px;
  align-items: left !important;
  max-width: 50%;
  margin: auto !important;
}

.topright {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right !important;
/*  height: 100vh; */
  width: 100vw;
  padding: 10px;
  align-items: right !important;
  max-width: 50vw;
  margin: auto !important;
}

.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
    0% { opacity: 1; }
    49% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 0; }
}
