/* basic reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 24px;
    line-height: 1.44;
    height: 100%;
}

h1 {
    margin-top: 0;
    font-size: 4.3rem;
  }
  
  /* 1.2 type scale minor third 
    4.3rem
    3.583rem
    2.986rem
    ...
    0.694rem
    0.579rem
    0.482rem
  */
  
  h2 {font-size: 2.074rem;}
  
  h3 {font-size: 1.728rem;}
  
  h4 {font-size: 1.44rem;}
  
  h5 {font-size: 1.2rem;}
  

  small {
    font-size: 0.777rem;
  }
  
  
  ul {
    margin: 0 1.44em;
  }
  
  /* end of reset */
  
  /* basic styling */
  

  /* anchor tag pseudo elements */
  a{
    font-family: 'Inter', sans-serif;
  }
  
  
  img, video {
    max-width: 100%;
    height: auto;
  }
  
  .video_container{
    width: 100%;
  }
  .video_container iframe{
    width: 100%;
    aspect-ratio: 16/9;
  }
  .video_container.anamorphic iframe{
  
    aspect-ratio: 2.85/1;
  }
  
  
  /* end of basic styling */
  
  
  #cal svg {
    width: 24px;
  }
  
  hr {
    margin: 3.583rem 0;
  } 
  
  @media screen and (min-width:1200px) {
    .columns-2{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.44rem;
    }
  }
  
  