/* Styles for the main container */
#mainContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    font-family: Arial, sans-serif;
  }
  
  /* Styles for the text input */
  #getTextInput {
    width: 100%;
    height: 120px;
    resize: none;
    white-space: pre-wrap;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
  }
  #getTextInput:hover {
    background-color: #ffffff;
  }

  /* Styles for the poem button */
  #getPoemButton {
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    border: none; /* Remove borders */
    padding: 10px 20px; /* Top and bottom padding, left and right padding */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Text size */
    cursor: pointer; /* Change mouse cursor to pointer */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
    width: 100%;
  }
  
  #getPoemButton:hover {
    background-color: #45a049; /* Darker shade of green on hover */
  }
  
  /* Styles for the poems container */
  #getPoemsContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: rgb(250,250,250,0.75);
    width: 100%;
    gap: 20px;
    background-size: COVER;
    background-position-x: center;
    background-position-y: center;
    background-blend-mode: overlay;
  }
  
  /* Common styles for poem containers */
  .poemContainer {
    flex: 1;
    min-height: 512px;
    padding: 20px;
    box-sizing: border-box;
    background-size: cover;
    background-position: center center;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight:lighter;
    color: black;
  }
  
  /* Specific styles for Spanish poem container */
  #getPoemContainer_spanish {
    background-color: rgba(255, 200, 255, 0.25);
    background-blend-mode: overlay;
    text-align: right;
  }
  
  /* Specific styles for English poem container */
  #getPoemContainer_english {
    background-color: rgba(200, 200, 255, 0.25);
    background-blend-mode: overlay;
    text-align: left;
  }
  