
body{ background-color: bisque}
h2{color: darkred; text-align:center;  font-style: italic;}
hr { border: none; height: 1px; background-color: cornflowerblue}
p {color: mediumblue; font-family: cursive;}
label{font-family: cursive;}

h2{
    transition: font-size 5s;
}
h2:hover {
    font-size: 1000%;

}

textarea:focus {
    color: red;
}
textarea:hover {
    background-color: aliceblue;
}