* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    width: 100%;
    height: 100%;
  }
  
  h2 {
      font-family: "IBM Plex Serif", serif;
      font-size: clamp(40px, 6vw, 50px);
      font-weight: 200;
      color: #FEFEFE;
      margin-bottom: 5px;
  }
  
  .iframeContainer {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      width: 100vw;
      background-color: #F2F2F2;
  }
  
  iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .stickyBar {
      position: sticky;
      top: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #444444;
      padding: 10px 15px;
      z-index: 1;
  }
  
  .stickyLogo {
      height: clamp(45px, 6vw, 60px);
  }
  
  .noStyles {
      border: none;
      outline: none;
      text-decoration: none;
      background-color: transparent;
      width: 100%;
  }