body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f4f4f4;
  }

  #buttonContainer {
    display: flex;
    gap: 10px; /* Adds spacing between buttons */
    margin-top: 20px;
  }

  #outputContainer {
    position: relative;
    margin-top: 20px;
    width: 90%;
    max-width: 800px;
  }

  #output {
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    text-align: center;
    word-wrap: break-word;
  }

  #copyButton {  
    background-color: #ffffff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
  }

  #copyButton:hover {
    background-color: #bdbdbd;
  }

  button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background-color: #007BFF;
    color: white;
    border-radius: 5px;
  }

  button:hover {
    background-color: #0056b3;
  }

  #githubLogo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
  }

  #githubLogo img {
    width: 40px;
    height: 40px;
  }

  #githubLogo:hover {
    background-color: #ffffff;
  }