@charset "UTF-8";
html, body{
  height: 100%;
}
#wrapper{
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #aaa;
}
.Header{
  position: relative;
}
.Content{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}
.Content .inner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.Content img.icon{
  width: 40%;
  max-width: 200px;
}
.Content p{
  font-size: 3.5vw;
}
.Content p.title{
  font-size: 5.5vw;
  font-weight: bold;
  margin: 1em 0;
}
.Footer{
  margin-top: auto;
  background: #fff;
}
@media screen and (min-width: 930px) {
  .Content p{
    font-size: 16px;
  }
  .Content p.title{
    font-size: 26px;
  }
}