  body {
    font-family: Arial, sans-serif;
  }

  main {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    row-gap: 25px;
  }

  header {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 15px;
  }

  header>h3 {
    font-family: "Delius Swash Caps", cursive;
    font-style: italic;
    font-size: 18px;
    font-weight: 300;
  }

  main .diagram-editor,
  main .potentiometers-editor,
  main .properties-editor {
    width: 1024px;
    border: 1px solid #000;
    background-color: #f9f9f9;
  }

  main .properties-editor {
    min-height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  main .properties-editor .control {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
  }

  main .potentiometers-editor {
    padding: 45px 0;
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    background-color: beige;
  }

  main .potentiometers-editor .potentiometer {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: greenyellow;
  }

  main .potentiometers-editor .lcd {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    border: 2px solid black;
    background-color: #000;
    margin: 25px;
    min-height: 128px;
    font-size: 13px;
  }

  main .potentiometers-editor .lcd > div {
    display: flex;
    flex-direction: row;
    column-gap: 150px;
    height: 50px;
    width: 100%;
  }

  main .potentiometers-editor .lcd > div > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  main .potentiometers-editor>div {
    display: flex;
    flex-direction: column;
    row-gap: 100px;
  }

  main .potentiometers-editor>div>div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 200px;
  }

  .logo {
    display: flex;
    flex-direction: row;
    column-gap: 15px;
  }

  .logo>h2 {
    font-family: "Delius Swash Caps", cursive;
    font-weight: 400;
    font-style: normal;
  }

  .logo>img {
    width: 64px;
    height: 64px;
  }

  .node-attributes-modal {
    width: 460px;
    max-height: 640px;
    background-color: white;
    border: none;
    border-radius: 10px;
    z-index: 10000;
  }