/**
 * base00: #181818
 * dark-foreground: #b8b8b8
 * base05: #d8d8d8
 * focus: #7cafc2
 */
:root {
  font-family: "VT323", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  color: #181818;

}
*, *::before, *::after { box-sizing: border-box; }

html, body {
  padding: 0;
  margin: 0;
  font-size: 3rem;
  background-color: #d8d8d8;
}

input { font-family: inherit; background-color: transparent; color: inherit; }
.hide { display: none; }

#data,
#search {
  display: block;
  margin: 0 auto;
  width: 100%;
  text-transform: uppercase;
  padding: 2rem;
}

#search {
  font-size: 3rem;
  line-height: 1.5;
  border: 1px solid transparent;
  border-bottom-color: #b8b8b8;
}

#search:focus {}

#data {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  margin-top: 1rem;
  word-break: break-all;
}

.not-found {
  color: #585858;
}

#footer {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 48px;
  background-color: #d8d8d8;
  padding-left: .25rem;
  padding-right: .45rem;
}

.github {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.github__logo {
  width: 1.75rem;
  height: 1.75rem;
  margin-top: .5rem;
  margin-right: .5rem;
}

.github__repo {}

/**
 * media queries;
 * big mobile
 */
@media (max-width: 480px) {
  html, body {
    font-size: 2rem;
    line-height: 1;
  }

  #search {
    font-size: 2rem;
    line-height: 1;
  }

  .github__logo {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/**
 * media queries;
 * small mobile

 * @media (max-width: 320px) {
 *   /*html, body {
 *     font-size: 1.5rem;
 *   }
 *
 *   #search {
 *     font-size: 1.5rem;
 *     line-height: 1;
 *   }
 * }
*/
