html {
    font-family: Helvetica, sans-serif;
    font-weight: normal;
    font-size: 15pt;
    height: 100%;
  }

body {
    background: linear-gradient(170deg, white 0%, white 14.9%, #fbdd11 15%, #FBDD10 84.99%, white 85%, white 100%);
    margin: 0 auto;
    min-height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
}
  
  .nav {
    display: flex;
    justify-content: end;
    padding: 15pt;
    background-color: white;
  }
  
  /* .nav > * {
    display: inline-block;
  } */
  
  .nav > a {
    text-transform: uppercase; font-size: 12pt;
    text-decoration: none;
    color: black;
    margin-right: 16pt;
  }
  
  .nav>a:hover {
    color: orange;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(3, 4fr);
    grid-gap: 32pt;
    /* align-items: center;
    align-self: stretch; */
  }
 
  .grid > div {
    /* width: 80%; */
    border-radius: 3px;
    padding: 12pt;
  }
  
  .grid h2, .grid h3 {
    text-align: center;
    text-transform: uppercase;
  }
  .ad {
    text-align: center;
    margin: 6pt 0;
    display:flex;
    justify-content: center;
  }
  .split {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    line-height: 1;
  }
    .split span:last-child {
      font-weight: 800;
  }
  .shadow {
      box-shadow: -1px 1px 5pt dimgrey;
  }
  .invisible {
    display: none;
  }
  .card {
    background-color: #fbcb10;
  }
  .claim-section {
    margin-top: 20px;
  }
  #address {
    width: 100%;
    border: 1px none #000;
    background-color: palegoldenrod;
    transition: background-color 200ms ease;
    color: black;
    line-height: 24px;
    text-indent: 6px;
  }

  #address:focus, #address:active {
    background-color: rgba(238,232,170, 0.7);/*palegoldenrod with transparency*/
    color: black;
    border: none;
    outline: none;
  }
  #faucet_claim_btn {
    padding: 0 24px;
    border: none;
    background-color: white;
  }
  #faucet_claim_btn, #address { 
    font-size: 16pt;
    border-radius: 6px;
    height: 48px;
  }
  .claim-amount {
    font-size: 16px;
    line-height: 16px;
    color: darkslategray;
    background-color: orange;
    border-radius: 6px;
    padding: 6px;
    margin-top: 6px;
    display: inline-block;
  }

  .what-is-banano p {
    width: 45%;
    margin: 20px 5%;
  }
  .what-is-banano p:last-child {
    margin-left: 15%;
  }

  .split button {
    padding: 4pt;
    margin-left: 5pt;
  }

  .overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
    content: '';
  }

  .loader {
    position: absolute;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    z-index: 2;
  }

  .loader svg {
    animation: spin 1s infinite;
    border-radius: 30px;
    background-color: black;
  }

  .kinda-logo {
    font-size:48pt;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom:0;
    margin-left: 16pt;
    margin-top:0;
  }

  .description {
    text-align: right;
    padding-left:32pt;
  }

  .monkee {
    width: 10%;
    display: inline-block;
  }

  .monkee:hover {
    opacity: 0.8;
    cursor: pointer;
  }

  .mokeys-served {
    margin-right: 16pt;
    text-align: right;
  }

  .faucet-stats, .faucet-stats p {
    text-align: left;
    margin-left: 16pt;
    margin-top: 16pt;
  }
  
  .just-arrived {
    animation: blink 2s infinite;
    animation-timing-function: cubic-bezier;
  }
  .faucet-list {
    height: calc(100vh - 238px);
  }
  .faucet-list table {
    margin: 16pt auto;
  }
  .faucet-list table thead td {
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
  }
  .faucet-list tr:nth-child(2n) {
    background-color: palegoldenrod;
  }
  .faucet-list tr:hover {
    opacity: .7;
    cursor: pointer;
  }
  .faucet-list a::before {
    content: ' ';
    display: inline-block;
    background-size: contain;
    width: 30pt;
    height: 12pt;
    background-image: url(./online.png);
    background-repeat: no-repeat;
    background-position: top;
  }
  .faucet-list table td {
    padding: 6pt 6pt;
  }

  .faucet-list tbody td {
    max-width: 196pt;
  }
  .nav.split {
    flex-direction: column;
    align-items: center;
  }

  footer.nav.split a:first-child {
    margin-bottom: 10px;
  }

  footer {
    grid-row-start: 2;
    grid-row-end: 3;
  }

  #results td:first-child {
    max-width: 240px;
    overflow: hidden;
  }
  table#results td:nth-child(2) {
      text-align: center;
  }
  .modal-container .loading::before {
      content: '3. '
  }
  
  @keyframes blink{
    0%{
      opacity: 1;
    }
    
    50%{
      opacity: 0.5;
    }
  
    100%{
      opacity: 1;
    }
  }
  
  @keyframes spin{
    0%{
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  
    100%{
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  @media (max-width: 1024px) {
    html {
      font-size: 14pt;
    }
    .grid {
      grid-template-columns: 1fr;
    }
    p.kinda-logo, h1.kinda-logo {
      font-size: 32pt;
      text-align: right;
      padding-right: 16pt;
      line-height: 0.9;
    }
    .nav > a {
      font-size: 18pt;
    }

    main {
      flex-direction: column;
    }

    main section {
      text-align: center;
    }

    main section article {
      margin: 3rem 0 3rem 0;
    }

    .chances {
      margin: 0 auto;
    }

    .lottery-ticket {
      margin: 0 auto;
    }
    div.monkee {
      width: 20%;
    }
    .what-is-banano p {
      width: auto;
      margin: 20px;
    }
    #address {
      background-color: #fcf295;
    }
    #faucet_claim_btn {
      border: 1px solid darkorange;
    }
  }