/* CSS Reset  */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  background-color: #808080;
  box-shadow: 0 5px 0 #636363;
  color: white;
  padding: 1em 1.5em;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}

a:hover {
  background-color: #4b4b4b;
  cursor: pointer;
}

a:active {
  box-shadow: none;
  top: 5px;
}

html,
body {
  height: 100%;
  width: 100%;
}
#wrap {
  min-height: 90%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
#userInput {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #0183c1;
}
#file_input {
  margin: 1em 0;
}
#template_selector {
  margin: 1em 0;
}
.header {
  background: #b6c0cf;
  line-height: 2.5em;
  font-size: 1.25em;
  text-align: center;
}
.flex-col {
  display: flex;
  flex-direction: column;
  min-height: 40vh;
}
.flex-fill,
textarea {
  flex-grow: 1;
}
#download_link {
  text-align: center;
}

.white {
  color: #ffffff;
}

.button {
  border-radius: 3px;
  background: var(--primary-500, #005fa3);
  color: var(--shade-0, #fff);
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 3px 22px;
  border: none;
  cursor: pointer;
}

.vertical-center {
  margin: 0;
  position: relative;
  top: 1%;
  left: 46.5%;
}
