html {
    box-sizing: border-box;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: inherit;
  }
  
  body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
      'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
      sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
      monospace;
  }
  
  body {
    padding: 20px 10px;
  }
  
  .description {
    margin-bottom: 30px;
  }
  
  .container {
    width: 100%;
  }
  
  .item {
    display: flex;
    align-items: center;
    background-color: #c6dcc6;
    padding: 6px;
    border: 2px solid #63dc63;
  }
  
  .item:not(:last-child) {
    margin-bottom: 10px;
  }
  
  .item-type {
    background-color: #40c940;
    padding: 5px 15px;
    border-radius: 3px;
    margin-right: 8px;
    color: white;
    font-weight: bold;
    font-size: 10px;
  }
  
  .item-endpoint {
    font-size: 14px;
    font-weight: bold;
    margin-right: 8px;
  }
  
  .item-description {
    font-size: 13px;
    font-style: italic;
  }
  