/* CSS files add styling rules to your content */
* {
  box-sizing: border-box;
}

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

body {
  font-family: helvetica, arial, sans-serif;
  display: grid;
  height: 100vh;
  max-height: 100vh;
  padding: 1em;
  grid-template-rows: minmax(100px, 200px) auto 1fr;
  grid-gap: 1em;
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
}

.controls {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: .5em 1em;
}

h1 {
  font-style: italic;
  color: #373fff;
}

textarea {
  appearance:none;
  font-size: 1rem;
}

svg {
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 100%;
  height: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.out {
  position: relative;
}

