@font-face {
    font-family: 'NewEdge';
    src: url('/data/NEWEDGE666-REGULAR.OTF');
  }
  
  body {
    font-family: 'NewEdge', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 200vh;
    overflow: auto;
    background-color: white;
    display: flex;
    flex-direction: column;
  }
  
  /* header style */
  #header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: black;
    padding: 10px 0;
    height: 100px;
    z-index: 1001;
    position: fixed;
    width: 100%;
    background-color: white; 
  }
  

  .header-section {
    padding: 1px 5px;
    margin: 0 5px;
    text-align: center;
    flex: 1;
    font-weight: bold;
    border-radius: 5px;
    z-index: 1001;
    font-size: 6vh;
  }
  

  .scaling-div {
    position: fixed;
    left: 0;
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  #div1 {
    top: 10%;
    transform-origin: top;
    transform: scaleY(1);
  }
  
  #div2 {
    bottom: 0;
    transform-origin: bottom;
    transform: scaleY(0);
  }
  

  .scaling-svg {
    width: 100%;
    height: 100%;
    display: block;
    transform-origin: center top;
    transition: transform 0.3s ease;
  }
  
  
  @media (max-width: 768px) {

    #header {
      flex-direction: column;
      height: auto;
      padding: 10px;
    }
  
    .header-section {
      margin: 5px 0;
      font-size: 5vh; 
    }
  
    
    .scaling-div {
      height: 80vh;
    }
  }
  
  @media (max-width: 480px) {
    .header-section {
      font-size: 4vh; 
    }
  
    .scaling-div {
      height: 70vh;
    }
  }
  
  .continuebutton {
    position: fixed; 
    width: 40%; 
    height: 40%; 
    left: 50%; 
    transform: translateX(-50%); 
    bottom: 0%; 
  }
  
  .continuebutton-link {
    text-decoration: none;
  }

 