@layer base, common, page;
@import "https://cdn.jsdelivr.net/npm/kiso.css@latest/kiso.css" layer(base);

@layer common {
  html {
    font-size: 18px;
  }
  body {
    margin-inline: 1em;
    background: linear-gradient(-90deg, rgba(9, 9, 121, 1) 0%, rgba(0, 121, 145, 1) 100%);
    color: cadetblue;
  }
  h2,p,figure,ul,ol,dl {
    margin-block: revert;
  }
  ul,ol {
    padding: revert;
    list-style-type: revert;
  }
  p {
    line-height: 1.8;
  }
  a,dl,dt,dd {
    all: revert;
  }
}

@layer page {
  @media (min-width: 1120px) {
    body {
      width: 820px;
      margin-inline: 190px auto;
    }
  }

  
}