html {
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: whitesmoke;
    padding: 8em 1em;
}

body {
    width: calc(100% - 4em);
    padding: 1em;
    align-self: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: white;
    border: 1px solid lightgrey;
    overflow: scroll;
}

#title {
	color: grey;
}

.content {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 2em;
}

.content h1 {
    margin-top: 0;
    color: cornflowerblue;
    font-size: 1em;
    font-family: sans-serif;
}

.content textarea {
    border: none;
    border-bottom: 1px solid grey;
    outline: none;
    font-size: 1em;
    height: 3.5em;
    background-color: whitesmoke;
    color: black;
}

.content.repeatable textarea {
    height: 8.5em;
}

.content.source textarea {
    height: 8.5em;
}

.content.output {
	margin-bottom:0;
}

.content.output textarea {
    height: 8.5em;
}

button {
    margin-bottom: 1em;
    border: 1px solid grey;
    padding: 1em;
}