      @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;400;500;600;700&display=swap");
      :root {
        --primary-color: #6366f1;
        --accent-color: #3f83f8;
        --text-color: #333333;
        --link-color: #2563eb;
        --background-color: #ffffff;
        --light-gray: #f0f0f0;
        --gray: #808080;
        --dark-gray: #555;
      }
      * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        font-family: "Inter", sans-serif;
      }

      .maindiv {
        position: relative;
        width: 100%;
        height: 100vh; /* or any other height */
        background-color: #ffffff;
        background-image: linear-gradient(
          180deg,
          #ffffff 0%,
          #6284ff 50%,
          #483939 100%
        );
      }

      .centerdiv {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
      }
      h1 {
        text-transform: capitalize;
        text-align: center;
        margin-bottom: 30px;
        color: var(--text-color);
        text-shadow: 1px 2px 5px #242a6c;
        font-size: 2.1rem;
      }
      h2 {
        text-align: center;
      }
      textarea {
        background-color: #444;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
        border-radius: 10px 10px 0 0;
        border: 15px solid #34495e;
        color: var(--light-gray);
        font-size: 1.3rem;
      }
      .mainbtn {        
        margin-top: 1.1rem;
        padding: 10px 20px;
        border-radius: 20px;
        border: 5px solid #436378;
        background: var(--gray);
        font-size: 1rem;
      }

        #mywords {
            width: 80%;
            height: 100px;
            font-size: 16px;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        #btn {
            padding: 10px 20px;
            font-size: 16px;
            background-color: #28a745;
            color: white;
            border: none;
            cursor: pointer;
            border-radius: 5px;
        }

        #btn:hover {
             background-color: #218838;
        }
        @media (max-width: 768px) {
            #mywords {
                width: 90%;
                height: 80px;
                font-size: 14px;
            }
            #msg {
                font-size: 16px;
            }
            #btn {
                font-size: 14px;
                padding: 8px 16px;
            }
        }