:root {
    font-family: 'Roboto Mono', monospace;
}

body, html {
    margin: 0;
    padding:0;
}

#wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#submit-wrapper,
#print-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    margin: 1em;
}

#note-text-area-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

#note-text-area {
    display: block;
    width: calc(100vw - 8em);
    height: 20vh;
    padding: 1em;
}

#note-print-preview,
#note-print {
    margin-left: 1em;
    margin-right: 1em;
    flex: 1;
}

#header-section {
    margin-bottom: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
}

button {
    display: block;
    font-family: inherit;
    background-color: inherit;
    border: 0px solid #fff;
    margin-top: 1em;
    padding: 1em;
    background: #f2f2f2;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

#note-submit {
    flex: 5;
    margin-right: 1em;
}

button:focus {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

#ad {
    font-size: smaller;
    justify-self: flex-end;
    padding: 1em;
}

#output {
    border: 1px solid #000;
    padding: 1em;
    width: calc(100vw - 8em);
    display: block;
}