html,body {
  height: 100%;
  background-color: #fff;
  margin: 0;
}

@font-face {
  font-family: 'vacaciones';
  src: url('/fonts/vacaciones.woff2') format('woff2'),
  url('/fonts/vacaciones.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

a {
  color: #00B7FF;
}

.container {
  display: flex;
  flex-flow: column;
  height: 100%;
}

.container .row {
  border: 1px dotted grey;
}

.header{
  background-color: #2ec530;
  margin: 0;
  padding: 0;
}

.header h1#title{
  text-align: left;
  font: 60px "vacaciones";
  color: #fff;
  margin: 0;
  padding: 20px;
}
.container .row.header {
  flex: 0 1 auto;
  /* The above is shorthand for:
  flex-grow: 0,
  flex-shrink: 1,
  flex-basis: auto
  */
}

.container .row.content {
  background-image:    url(/img/robot.png);
  background-size: cover;
  background-repeat:   no-repeat;
  background-position: top right;
  flex: 1 1 auto;
  font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 20px;
  color: #666;
  padding: 20px;
}

.container .row.footer {
  text-align: center;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  color: #666;
  flex: 0 1 auto;
  padding: 10px;
}
