/* simple reset*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    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
    2.074rem
    1.728rem
    1.44rem
    1.2rem
    1rem
    0.833rem
    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;}
  
  /* end of reset */
  
  /* basic styling */
  

  header {
    background-color: #D1EBFF;
    padding: 100px;
  }

  
  body {
    min-height: 110vh;
    color: #2b2b2c;
    background-color: #F7F7F7;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
        
  }
  
  h1,
  h2 {
    font-family: "Cardo", serif;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    font-size: 60px;
    
  }
  
  h3,
  h4 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    
    color: #2b2b2c;
    text-align: center;
  }

  figcaption {
    width: 100%;
    text-align: center;
    font-size: 0.833rem;
    color: #2b2b2c;
  }

  /* NAV */
  nav ul {
    list-style-type: none;
    margin: 0;
    margin-bottom: 20px;
    padding: 20px;
    overflow: hidden;
    background-color:#D1EBFF;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    top: 0;
    width: 100%;
    text-align: center;

  }

  nav li a {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    
    color: #2b2b2c;
    padding:0;
    text-decoration: none;
    font-size: 16pt;
    display: block;
    height: 100%;
  
  }
  
  nav a:hover {
    color: #f65707;
    text-decoration: underline;
}
  

  
  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;
  }

  footer {
    background-color: #D1EBFF;
  }
  
  
  /* 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;
    }
  }

  