@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap');

body {
    margin: 0;
    padding: 10px;
    background-color: #111;
    font-family: 'Roboto', sans-serif;
    color: #aaa;
}

.border {
    margin-top: 10px;
    padding: 2px;
    background: linear-gradient(135deg, #151515, #222);
    background-size: auto 100%;
    border-radius: 10px;
    box-shadow: black 4px 4px 16px;
}

.border > * {
    border-radius: 10px;
}

textarea {
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: none;
    resize: none;
    outline: none;
    font-size: 1.5rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #ccc;
    padding: 1rem;
    background: linear-gradient(135deg, #222, #151515);
    background-size: auto 100%;
}

header {
    text-align: center;
    text-shadow: black 2px 2px 4px;
    text-decoration: underline;
}

#author {
    position: absolute;
    bottom: 8px;
    right: 8px;
}

.misc-goback {
    position: absolute;
    top: 8px;
    left: 8px;
    text-decoration: none;
    color: white;
    font-family: monospace;
}

#options {
    margin: 5px;
}

select {
    background: linear-gradient(135deg, #222, #151515);
    background-size: auto 100%;
    border: none;
    border-radius: 10px;
    box-shadow: black 4px 4px 16px;
    color: #ccc;
    font-family: 'Roboto', sans-serif;
    padding: 5px;
    outline: none;
}

a {
    color: #ccc;
}