
  body {
    width: 100%;
    min-height: 100vh;
    display: relative;
    margin: 0;
    padding: 0;
	background-image: url('pexels-kevin-ku-92347-577585.jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
  }
  .wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    align-items: center;
    justify-content: center;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }
  h1 {
	color: rgba(255,255,255,1.0);
	font-family: Impact;
	font-weight: bold;
	letter-spacing: 10px;
	text-shadow: 5px 2px 3px #222;
  }
  @media screen and (min-width: 601px) {
	  h1 {
		font-size: 50px;
	  }
  }
  @media screen and (max-width: 600px) {
	  h1 {
		font-size: 35px;
	  }
  }
  h2 {
	color: rgba(255,255,255,1.0);
	font-family: arial;
	font-weight: 300;
	font-size: 16px;
	text-shadow: 0 0 3px #131313;
  }