body {
    margin: 0;
    background-color: rgb(0, 0, 0);
}
canvas {
    width: 100%;
    height: 100%;
}

#response-container {
    position: absolute;
    padding: 15px;
    top: 16%;
    left: 5%;
    color: rgb(0, 0, 0);
    font-size: 18px;
    font-family: 'Trebuchet MS';
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); #0.1
    border-radius: 10px;
    width: 15%;
    visibility: visible;
  }
  
#response-container:empty {
  visibility: hidden;
}
    
.input-container {
    display: flex;
    border-radius: 10px;
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); #0.1
    width: 15%;
    transition: all 0.5s ease-in-out;
    position: absolute;
    top: 5%;
    left: 5%;
}
  
  #send-button {
    border: 1px solid #fff;
    background-color: #000;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    font-family: 'Trebuchet MS';
    font-size: 12px;
    transition: all 0.5s ease-in-out;
  }

  #video {
    position: absolute;
    right: 5%;
    bottom: 5%;
    border-radius: 45px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); #0.1
  }

  #clipboard-icon {
    position: fixed;
    padding: 2px;
    top: 6%;
    left: 22%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); #0.1
    cursor: pointer;
    font-size: 24px;
    display: none;
  }

  .mic-button {
    position: fixed;
    padding: 2px;
    left: 21%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); #0.1
    cursor: pointer;
    font-size: 24px;
    display: none;
  }