body {
  margin: 0px;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

.app {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: auto;
  font-family: arial;
  font-size: 1.1rem;
  word-spacing: .09rem;
  letter-spacing: .02rem;
  /* background-color:pink; */
}

.error {
  margin-top: 2rem;
  text-align: center;
}

input {
  position: sticky;
  top: 1.25rem;
  height: 2.7rem;
  display: block;
  margin: 0 1.25rem 0 1.25rem;
  padding: 0 1rem 0 3rem;
  border: solid .1rem #2b2b2b;
  border-radius: 2rem;
  background-size: 1.5rem;
  background-repeat: no-repeat;
  background-image: url('search.png');
  background-position: center left .8rem;
  text-align: center;
  font-size: 1.1rem;
  word-spacing: .09rem;
  letter-spacing: .02rem;
}

input:focus {
  border: solid .1rem #2b2b2b;
  outline: solid .05rem #00000000;
}

input::placeholder {
  color: #a1a1a1;
  font-size: 1.1rem;
  word-spacing: .09rem;
  line-height: 1.2rem;
}

input:focus::placeholder {
  color: #ffffff00;
}

ul {
  margin: 0;
  margin-top: 2.25rem;
  padding: 0;
  list-style-type: none;
}

li {
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  /* background-color:pink; */
  border-radius: 5rem;
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  text-decoration: underline;
}

.error .refresh,
.error .return {
  text-decoration: underline;
  color: #0000ff;
}

.spec-loca {
  padding: .15rem;
  color: #a1a1a1;
  font-size: 1rem;
}

.footer {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: -.25rem;
  font-size: .77rem;
  color: #a1a1a1;
  text-align: center;
  line-height: 1.3rem;
  letter-spacing: .04rem;
}

.hide {
  display: none;
}

.no-select {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.do-select {
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}

@media screen and (orientation: landscape) {
  .app {
    margin-top: 2rem;
  }

  input {
    top: 2rem;
  }

  ul {
    margin-top: .25rem;
  }

  li {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .footer {
    margin-bottom: .75rem;
    font-size: .8rem;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #17202a;
  }

  .error {
    color: #e9e9e9;
  }

  .error .refresh,
  .error .return {
    text-decoration: underline;
    color: #e9e9e9;
  }

  input {
    background-image: url('search_white.png');
    background-color: #5b5a5a;
    color: #e9e9e9;
    border: solid .1rem #8c8a8a;
  }


  input:focus {
    border: solid .1rem #8c8a8a;
    outline: solid .05rem #00000000;
  }

  input::placeholder {
    color: #e9e9e9;
  }


  a {
    color: #e9e9e9;
  }

  .spec-loca {
    color: #a1a1a1;
  }

  .footer {
    color: #a1a1a1;
  }
}

.fixed {
  z-index: 101;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-width: 500px;
  background-color: #b4d6ff82;
}