html {
    font-family: 'Ubuntu', sans-serif;
    background: #35682d url('../image/background.png') repeat center center;
}

body {
    margin: 0;
}

.main {
    overflow: hidden;
    background: #0cb7f2 url('../image/background.png') repeat center center;
    box-shadow: inset 0 0 5px 5px #0cb7f2;
    padding: 10px;
    text-align: center;
}

h1 {
    margin: 10px;
    text-shadow: -1px 0 #555, 0 1px #555, 1px 0 #555, 0 -1px #555, -3px 0 #0cb7f2, 0 3px #0cb7f2, 3px 0 #0cb7f2, 0 -3px #0cb7f2;
    color: #fff;
    font-size: 40px;
    line-height: 40px;
}

textarea {
    width: 80%;
    min-width: 300px;
    height: 400px;
    margin: 10px auto;
    box-shadow: 0 0 5px 5px #0cb7f2;
    border: 1px solid #555;
    border-radius: 10px;
    background-color: #fff;
    padding: 10px;
}

.button {
    cursor: pointer;
    width: 200px;
    margin: 10px auto;
    box-shadow: 0 0 5px 5px #0cb7f2;
    border: 1px solid #555;
    border-radius: 10px;
    padding: 10px;
    background-color: #35682d;
    border-radius: 10px;
    text-shadow: -1px 0 #555, 0 1px #555, 1px 0 #555, 0 -1px #555;
    color: #fff;
    text-align: center;
}

.button:hover {
    text-decoration: underline;
}

.button:active {
    color: #0cb7f2;
}

footer {
    padding: 20px;
    clear: both;
    border-top: 1px solid #555;
    text-shadow: -1px 0 #555, 0 1px #555, 1px 0 #555, 0 -1px #555;
    color: #fff;
    text-align: center;
}

footer a {
    color: #fff;
    text-decoration: none;
}