@font-face {
  font-family: "ANK24";
  src: url('/font/Web437_DOS-V_re_ANK24.woff');
}

@font-face {
  font-family: "ANK16";
  src: url('/font/Web437_DOS-V_re_ANK16.woff');
}

body {
    background-color: #0F0F0F;
    color: #F0F0F0;
    font-size: 16px;
    font-family: "ANK16";
    padding-top: 30px;
    width: 60%;
    margin: auto;
}

.navbar {
  text-align: center;
}

/* links */
a {
    color: #8aacab;
    text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

pre {
  font-family: "ANK16";
  font-size: 16px;
}

pre.banner {
  text-align: center;
  font-size: 16px;
  font-family: "ANK16";
  color: #ac8aac
}

footer {
  text-align: center;
  color: #ac8aac
}

hr {
  width: 100%;
}

.about-me {
  margin: auto;
  height: 200px;
  width: 95%;
  display: flex;
  flex-direction: row;
}

.about-me img {
  height: 85%;
  width: auto;
  border-radius: 50%;
}

.about-me div.info {
  padding-left: 30px;
}

.about-me div.info b{
  color: #ac8aac
}


.eightyeightbythirtyone {
  margin: auto;
  height: auto;
  width: 90%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.eightyeightbythirtyone img{
  margin: 10px;
  height: 31px;
  width: 88px;
}

.err {
  animation: blink 0.75s steps(1, start) infinite;
}

@keyframes blink {
  50% {
      color: #0F0F0F;
      background-color: #F0F0F0;
  }
}

.secret{
  color: #0F0F0F;
  transition: color 3s;
}

.secret:hover {
  color: #F0F0F0;
}

@keyframes fadein {
    from { background-color: #0F0F0F;; }
    to   { background-color: #F0F0F0; }
}

@media only screen and (max-width: 950px) {
  body {
      width: 80%;
  }

  pre {
    font-size: 8px;
  }
  
  .about-me {
    flex-direction: column;
    height: auto;
    width: 100%;
  }
  .about-me img {
    width: 40%;
    height: auto;
    margin: auto;
  }
  .about-me div.info {
    width: 90%;
    margin: auto;
    padding-left: 0px;
    padding-top: 15px;
  } 

  .eightyeightbythirtyone {
    width: 80%;
}
}