body {
            font-family: serif;
            text-align: left;
            padding-top: 50px;
             border-radius: 800px;
		background: #12d0ff;
background: radial-gradient(circle,rgba(18, 208, 255, 1) 62%, rgba(250, 147, 250, 1) 80%, rgba(2, 107, 34, 1) 89%);
		box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.1);
		color: white;
        }
    
        
        
         #text-button {
            position: relative;
            padding: 10px 10px;
            font-size: 1em;
	    font-family: garamond;
	    Font-weight: bold;
	    border: 10px;
	    border-image:radial-gradient(circle,rgba(18, 208, 255, 1) 62%, rgba(250, 147, 250, 1) 80%, rgba(2, 107, 34, 1) 89%);
	    color: white;
        cursor: grab;
		border-radius: 200px;
		background: transparent;
		box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.1);
        transition: transform .5s;
            
        }
        #text-button:active {
    transform: scale(3);
}

container {
    text-align: center;
        }
        
        #text-container {
            position: relative;
            margin: 20px; 
            font-family: garamond;
            padding: 10px 10px;
            color: white; /* Set the text color */
            font-size: 1;
	        font-weight: bold;
            min-height: 20px;
            background: transparent;
            border-radius: 300px; /* Round the corners */
            box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
            line-height: 1; /* Adjust line spacing */
          
        }
     #textLines {
    position: absolute;
    top: 40%;
    left: 40%;
    right: 40%;
    transform: translateX(0%) translateY(-1000%);
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
}

/* Animation for the text flying in */
    #textLines.visible {
    transform: translateX(0%) translateY(0%) scale(3);
    opacity: 1;
    left: 40%;
    right: 50%;
}
/* Animation for the text flying away */
#textLines.fly-away {
    transform: translateX(200%) translateY(10000%) scale(10);
    opacity: 0;
    transition: transform 2s ease-in, opacity 1s ease-in;
}