body {
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  #output-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  #canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  }

  .button-class {
    z-index: 999;
    position: absolute;

    height: 50px;
    width: 100px;
    font-size: 1.5em;
  }
  
  .select-menu {
    position: absolute;
    top: 20px;
    z-index: 100;
    height: 50px;
  }

  .select-menu > select {
    max-width: 200px;
    height: 100%;
    font-size: 1.5em;
  }

  #copyButton {
    position: fixed;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffc20e;
    color: #ff0000;
    border: none;
    border-radius: 25px;
    padding: 20px 80px;
    cursor: pointer;
    display: none; /* Initially hidden */
    font-size:60px; /* Adjust font size for desktop */
}

#copyButton2 {
  position: fixed;
  bottom: 40%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff0e0e;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  padding: 20px 80px;
  cursor: pointer;
  display: none; /* Initially hidden */
  font-size:80px; /* Adjust font size for desktop */
}


