body {
  height: 100%;
  width: 100%;
  position: fixed;
}

.background {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.background:before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  z-index: -1;
  background: url("../images/blueprint.jpg") 0 0 repeat;
  background-size: 20%;
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  transform: rotate(30deg);
  opacity: 0.6;
}

.message {
  position: relative;
  margin: auto;
  background-color: #2196F3;
  color: #fff;
  display: inline-block;
  padding: 40px;
  opacity: 0.9;
  border-radius: 2px;
  font-family: Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
}
.message .logo {
  position: absolute;
  bottom: 15px;
  left: 15px;
  height: 24px;
}
.message h1 {
  margin: 10px 0;
}
.message p {
  text-align: right;
  margin: 0;
}
