/* connect five styles.css */

* {
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: auto;
  }

  #svg_div {
    width: min(760px, calc(100vw - 2rem));
  }

  svg {
    width: 100%;
    max-width: 760px;
    height: auto;
    background-color: #88AD72;
    /*height: 700px; */
    border-style: solid;
  }
