* {
    margin:0;
    padding:0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
body {
    background: #eee;
    color: #111;
    margin: 25px 5px 25px 5px;
}

#input{
    display: flex;
    flex-direction: column;
}

h1{
    text-transform: uppercase;
    padding:0.5rem;
}

p {
    padding: 0.5rem;
}

.label{
    font-style: italic;
}
button{
    padding: 0.5rem;
    background: #aa3030;
    color: white;
    font-size: larger;
    font-weight: bold;
    border: 2px solid #222;
    border-radius: 4px;
}

textarea{
    resize: none;
    padding: 0.5rem;
    width: 95%;
    height: 150px;
    border: 2px solid #222;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
    resize: none;
}

footer {
    font-size: smaller;
    background: #333;
    margin-top: 20px;
    padding: 0.5rem;
    width:95%;
    color: white;
}