body {
    background-color: #0069ca;
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin: 0;
  }
  #header {
    text-align: center;
    max-width: 600px;
    border-bottom: 1px #005fb6 solid;
    margin: 0 auto;
    padding: 12px 0;
  }
  #header a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 6px;
  }
  #logo {
    text-align: center;
    max-width: 600px;
    margin: 36px auto;
  }
  form {
    background-color: #005fb6;
    max-width: 576px;
    border-radius: 8px;
    margin: 0 auto;
    padding: 12px;
  }
  form > div {
    position: relative;
  }
  form div div:nth-of-type(1) {
    display: flex;
  }
  form input {
    font-size: 16px;
    font-family: Arial, sans-serif;
    height: 48px;
    border: none;
  }
  form input[type="text"] {
    color: #3679b7;
    width: 79.86111111111111%;
    border-radius: 4px 0 0 4px;
    padding: 0 1.736111111111111%;
    outline: none;
  }
  form input[type="submit"] {
    color: #ffffff;
    background-color: #0085ff;
    font-weight: normal;
    width: 16.66666666666667%;
    border-radius: 0 4px 4px 0;
    padding: 0;
    cursor: pointer;
    appearance: none;
  }
 form ul {
    background-color: #ffffff;
    font-size: 16px;
    width: 83.33333333333333%;
    border-radius: 0 0 4px 4px;
    box-shadow: 0px 12px 12px rgba(0, 0, 0, 0.2);
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: absolute;
    top: 48px;
    z-index: 1;
  }
 form ul li {
    color: #3679b7;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 6px 2.083333333333333%;
    cursor: pointer;
  }
 form ul li:hover {
    color: #ffffff !important;
    background-color: #3679b7 !important;
  }
  #lookup {
    background-color: #0085ff;
    width: 16.66666666666667%;
    height: 48px;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }
  i {
    border: 4px #a3c9eb solid;
    border-top: 4px #fdfdfd solid;
    border-radius: 50%;
    animation: spin 2s linear infinite;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  #tou {
    color: #bfe0ff;
    font-size: 12px;
    line-height: 22px;
    text-align: center;
    max-width: 600px;
    margin: 9px auto 0 auto;
  }
  #tou a {
    color: #bfe0ff;
    font-weight: bold;
    text-decoration: none;
  }
  #text {
    max-width: 600px;
    margin: 36px auto 0 auto;
  }
  #text h1 {
    color: #ffffff;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
    margin: 0;
  }
  #text h2 {
    color: #ffffff;
    font-size: 18px;
    font-weight: normal;
    text-align: left;
    margin: 24px 0 6px 0;
  }
  #text p {
    color: #bfe0ff;
    line-height: 24px;
    text-align: justify;
    margin: 12px 0 0 0;
  }
  #text .lead {
    color: #e7f0ff;
    font-size: 16px;
    line-height: 26px;
    text-align: justify;
    margin-top: 12px;
  }
  #text a {
    color: #bfe0ff;
    font-weight: bold;
    text-decoration: none;
  }
  #text ol,
  #text  ul {
    color: #bfe0ff;
    line-height: 24px;
    margin: 12px 0 0 0;
    padding-left: 20px;
  }
  #text li {
    margin: 6px 0;
  }
  #footer {
    text-align: center;
    max-width: 600px;
    border-top: 1px #005fb6 solid;
    margin: 36px auto 0 auto;
    padding: 12px 0;
  }
  #footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 6px;
  }
  @media only screen and (max-width: 600px) {
    #header a:nth-of-type(2) {
      display: none;
    }
    #logo img {
      width: 180px;
      height: 64px;
    }
    form input[type="text"] {
      width: 75.86111111111111%;
    }
    form input[type="submit"] {
      width: 20.66666666666667%;
    }
   form ul {
      width: 79.33333333333333%;
    }
    #lookup {
      width: 20.66666666666667%;
    }
    #tou {
      width: 94%;
    }
    #text {
      width: 94%;
    }
  }