/* styles.css */

body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  textarea {
    margin: 10px;
    padding: 15px;
    width: 80vw; /* 80% of the viewport width */
    height: 20vh; /* 20% of the viewport height */
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: none; /* Disallows resizing */
  }
  
  @media (min-width: 600px) {
    /* Text areas will be larger on larger screens */
    textarea {
      width: 50vw;
      height: 25vh;
    }
  }

  footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #f5f5f5; /* Set your desired background color or use transparent */
    text-align: center;
    padding: 10px 0;
  }