body {
    padding: 0;
    margin: 0;
    font-family: helvetica, sans-serif;
    background-color: rgb(48, 46, 46);
    color: white;
    text-align: center;
    text-shadow: 1px 1px black;
}

a {
    text-decoration: none;
    color: white;
}

button {
    margin: auto;
    margin: 10px;
    padding: 5px 10px;
    border: 1px solid white;
    border-radius: 5px;
    background-color: rgb(48, 46, 46);
    color: white;
    text-shadow: 1px 1px black;
    font-size: 15px;
    box-shadow: 2px 2px black;
    cursor: pointer;
}

button:hover {
    box-shadow: 1px 1px 3px whitesmoke, -1px -1px 3px whitesmoke, -1px 1px 3px whitesmoke, 1px -1px 3px whitesmoke;
}

button:active {
    transform: translateY(2px);
    box-shadow: 1px 1px black;
    border: 1px solid rgb(99, 94, 94);
    color: grey;
}

textarea {
    min-width: 300px;
    min-height: 500px;
    margin: 10px;
}