*, *:before, *:after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  padding: 30px;
  background-color: whiteSmoke;
  font-family: 'Roboto', Helvetica, Arial sans-serif;
  color: #666666;
}

p {
  margin: 0;
}

a, a:visited {
  color: royalBlue;
  text-decoration: none;
}

a:hover {
  color: black;
  text-decoration: underline;
}

header > img {
  max-width: 50%;
}

.container {
  display: table;
  height: 100%;
  min-height: 100%;
  width: 100%;
}

.container--content {
  padding: 0 50px;
  background-color: #fff;
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  overflow: hidden;
  width: 100%;
  text-align: center;
}

footer {
  border-top: 2px solid whiteSmoke;
  margin: 50px 0;
  padding: 50px 0;
}
