* {
    font-family: 'Permanent Marker', sans-serif;
    box-sizing: border-box;
  }
  label {
    display: flex;
    justify-content: start;
    font-size: 1.2rem;
    padding: 1rem;
  }
  label:nth-of-type(2n-1) {
    background: #edf1f9;
  }
  input {
    width: 50%;
    min-width: 100px;
    max-height: 2.5rem;
    padding: 2px;
    font-size: inherit;
  }
  input[type=text]::placeholder {
    font-family: 'Reenie Beanie', cursive;
    font-size: 1.5rem;
  }
  label > span {
    margin: 0 0.25rem;
    word-break: break-all;
  }
  span > span {
    cursor: pointer;
  }
  .refresh {
    animation: present 350ms linear;
  }
  .pt {
    font-family: Monospace;
  }
  @keyframes present {
        0% {
          opacity: 0;
        }
        100% {
          opacity: 1;
        }
      }
  
  @media screen and (max-width: 700px) {
    label {
      border: 1px solid #bbb;
      border-radius: 4px;
      flex-direction: column;
    }
    input {
      width: 100%;
    }
  }