
  html {
    font-family: "REGULAR", sans-serif;
    font-size: 16px;
    
    line-height: 1.5;
    color: #1d3b58;
    
    overflow-x: hidden;
    scroll-behavior: smooth;
    
    
    border-top: 0.3em solid #1d3b58;
  }
  
  @media screen and (min-width: 1900px) {
    
    html {
      font-size: 0.85vw;
    }
  }

  * {
    box-sizing: border-box;
  }
  
  *:last-child {
    margin-bottom: 0;
  }
  
  body {
    width: 100%;
    max-width: 71em;
    min-height: 100vh;
    
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto; /* bëhet që main të zejë hapsirën e mbetur nëse contenti është më i shkurtër se height i body. */
    justify-items: stretch;
    align-items: start;
    
    margin: 0em auto;
  }

  main {
    display: flex;
    flex-flow: column nowrap;
  }
  
  main > section {
    padding: 2em 1em;
  }
  
  .withAside {
    grid-template-columns: auto 1fr;
  }
  
  body > main > section > h2 {
    
    margin-bottom: 0;
  }
