@font-face {
  font-family: 'ubuntu';
  font-style: normal;
  font-weight: 400;
  src:
    local('Ubuntu'),
    url(/fonts/Ubuntu-R.ttf) format('ttf'),
    url(/fonts/Ubuntu-R.woff2) format('woff2');
}

*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  background-color: rgb(100,100,100);
  font-family: ubuntu, sans-serif;
}
body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background-color: rgb(255,255,255);
  margin: auto;
  padding: 20px;
  max-width: 100vw;
}

div.headline {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

div.bordered {
  margin-top: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  border: 1px solid rgb(150,150,150);
  border-radius: 5px;
}

div.centered {
  text-align: center;
}

footer {
  margin-top: 30px;
  text-align: center;
}

input, select, textarea {
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input:focus, select:focus, textarea:focus {
  border: 1px solid #222;
  background-color: lightblue;
}

a[href^="mailto:"] {
  text-decoration: none;
  color: black;
}

img.borderbottom {
  border-bottom: 2px solid rgb(150,150,150);
}

#sig-canvas {
  border: 2px dotted #CCCCCC;
  border-radius: 5px;
  cursor: crosshair;
}
#sig-dataUrl {
  width: 100%;
}
