body {
    display : flex ;
    flex-direction : column ;
    justify-content : center ;
    align-items : center ;
    gap : 10px
}

h1 {
    font-size : 70px ;
    color :rgb(161, 239, 253)
}

textarea {
    width : 800px ;
    height : 400px ;
    font-size : 30px ;
    resize : none ;
}

button {
    width : 120px ;
    height : 40px ;
    border-radius : 10px ;
    border-style : none ;
    background-color : rgb(161, 239, 253) ;
    font-size : 20px ;
    transform : 0.3s ;
    cursor : pointer ;
    transition : all 0.2s ease ;
}

button:hover {
    transform: scale( 1.2 ) ;
    background-color : rgb(190, 245, 255) ;
}

button:active {
    transform: scale( 0.9 ) ;
    background-color : rgb(88, 230, 255) ;
}