h1{
    background-color: cornsilk;
}
input[type=text] {
    padding: 10px 10px;
    margin: 5px 0;
    box-sizing: border-box;
    transition: width 0.4s ease-in-out;
}
input[type=text]:focus {
    border: 3px solid #87e9e7;
    width: 75%;
}
input[type=text]:hover {
    background-color: cornsilk;
}
textarea {
    width: 50%;
    height: 60px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: cornsilk;
    resize: none;
    transition: width 0.4s ease-in-out;
}
textarea:focus {
    width: 100%;
}
