* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  background-color: #FFF;
}


#main {
  position: relative;
  height: 100vh;
}



.main {
  text-align: center;
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.main h1 {
  font-family: sans-serif;
  font-size: 100px;
  font-weight: 900;
  color: #000;
  position: center;
  background: url('../img/bg.jpg') no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: black;
  background-size: cover;
  background-position: center;
}

.main a {
  font-family: sans-serif;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  background: #c60b0b;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 40px;
  color: #fff;
  font-weight: 700;
  -webkit-box-shadow: 0px 4px 15px -5px #c60b0b;
          box-shadow: 0px 4px 15px -5px #c60b0b;
}


@media only screen and (max-width: 767px) {
    .main {
		top: 30%;
 }
	.main  h1 {
      font-size: 75px;
    }
}
