@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');

body
{
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    background-image:url(bck.jpg);
}

#txt1
{
    font-size:20px;
    margin:50px 0;
}

input, button, select, textarea
{
    padding:10px;
    background-color:rgba(244, 92, 66, 0.75);
    font-size:16px;
    color:white;
    border-radius:20px;
    border: none;
    -webkit-transition: background-color 0.8s;
    transition: background-color 0.8s;
}

input:hover, button:hover, select:hover, textarea:hover
{
    background-color:rgba(244, 92, 66, 1);
}

textarea
{
    min-height:100px;
    min-width:270px;
}