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



button {
    height: 50px;
    padding: 10px 20px;  /* Adjust padding to fit your design */
    font-size: 20px;  /* Size of the text inside the button */
    font-weight: bold;  /* Make the text bold */
    text-align: center;  /* Center the text inside the button */
    color: white;  /* Text color */
    border: none;  /* No border */
    border-radius: 24px;  /* Rounded corners */
    background-color: #eaafc8;
    
    transition: background-image 0.5s ease;  /* Smooth transition for hover effect */
    cursor: pointer;  /* Cursor indicates the button is clickable */
    outline: none;  /* Remove outline to increase focus on style */
}
button:hover {
    background-color:#234299;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1);
}

.container {
    padding: 20px;  /* Space inside the container */
    margin: min(20px);  /* Center the container on the page */
    width: 50%;  /* Or adjust to your preferred width */
    background-color: #ffffff;  /* White background */
    border-radius: 12px;  /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.19);  /* Drop shadow for 3D effect */
    text-align: center;  /* Center text and content within the container */
}

textarea {
    min-width: 20px;
    width: 100%;
    margin-bottom: 10px;
}

#outputText {
    margin-top: 20px;
}

#outputContainer {
    margin-top: 20px;
}

#outputText {
    background-color: #eaeaea;
    paddingbutterflyCanvas;
    border-radius: 5px;
}
#butterflyCanvas {
    width:1000px;
    height: 1000px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Make sure this is below the main content but above the background */
}


button#toggleMode{ 
  padding: 0 12px;
  background-color: #cccccc;
  height: 32px;
  font-size: 16px;
}

button.secondary-btn{
  background-color: transparent;
   border-style: solid;
  border-width: 2px;
  border-color: green;
}
button.secondary-btn:hover{
  background-color: green;
}