.container
{
    width:28%;
    min-width:320px;
    max-width:500px;
}
p
{
    font-size:25px;
    margin-top:8px;
    font-family: 'Caveat Brush', cursive;
    color:#529352;
}
img
{
    width:75px;
    margin-top:10px;
    float:right;
}
input 
{
    width:85%;
    box-sizing:border-box;
    border: 1px solid #ccc;
    margin:3px;
    padding:5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
input:focus{
    border: 1px solid #555;
}
input[type=submit]
{
    background-color: #59b559;
    border: none;
    color: white;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
}
input[type=submit]:hover
{
    background-color: #529352;
}

