@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root {
    --background-color: #71c7ec;
}

body {
    background-color: var(--background-color);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
}

h2 {
    text-align: center;
}

a {
    text-decoration: none;
}

a:hover,
a:visited {
    color: darkblue;
}

#banner {
    width: 100%;
    max-width: 1200px;
}

#header {
    background-color: var(--background-color);
    /*558abb*/
    width: 100%;
    text-align: center;
    padding: 0px 0px;
    line-height: 0;
}

#main {
    background-color: #ffffff;
    width: 100%;
    max-width: 700px;
    padding: 14px;
    margin: 0 auto;
    word-wrap: break-word;
    position: relative;
}

#google_translate_element {
    position: absolute;
    right: 10px;
    top: 6px;
}

.clear-float {
    height: 40px;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer img {
    width: 22px;
    height: 22px;
    margin-right: 5px;
}

.navlist {
    list-style-image: url('./image/highlightdot2.gif');
}

.navlist li {
    margin-bottom: 6px;
}

.nth-2n p {
    margin-bottom: 0;
    margin-top: 0;
}

.nth-2n p:nth-child(2n) {
    margin-bottom: 1.5rem;
}

.h2 {
    font-size: 17px;
    text-align: center;
}

::-webkit-scrollbar {
    width: 15px;
  
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
    height: 4em;
  
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  .header-title {
      font-size: 20px;
      margin: 1rem 0 0;
      text-align: center;
  }

  @media only screen and (max-width: 992px) {

    * {
        box-sizing: border-box;
    }

    .header-title,
    h1 {
        font-size: 15px;
    }

    .h2 {
        font-size: 14px;
    }

    body {
        font-size: 13px;
    }

    .navlist {
        margin-top: 20px;
        padding-left: 20px;
    }

    .navlist li {
        margin-bottom: 8px;
    }
  }
  