* {
  margin: 0;
}
@font-face {
    font-family: 'squealerregular';
    src: url('fonts/squealer-webfont.woff2') format('woff2'),
         url('fonts/squealer-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
body {
  height: 100vh;
  width: 100%;
  position: relative;
}
.main-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-container {
  width: 90%;
  margin: auto;
  position: absolute;
  top: 40%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.logo-wrapper {
  width: 180px;
  margin: 0 auto 25px auto;
}
.logo {
  width: 100%;
}
h1 {
  font-family: 'squealerregular', sans-serif;
  color: #F8981C;
  font-size: 80px;
  text-align: center;
  line-height:75px;
}
h1 span {
  font-size:20px;
  display:block;
  line-height:24px;
  margin-top:10px;
  color:#ffffff;
  font-family: 'Poppins', sans-serif;
}
p {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  text-align: center;
  max-width: 255px;
  margin: 20px auto 0 auto;
}
a {
  color: #F8981C;
  transition: 500ms;
  text-decoration: underline;
  transition: 500ms;
  display:block;
}
a:hover {

}

@media only screen and (min-width: 685px)  {
  .logo-wrapper {
    width:250px;
  }
  h1 {
    font-size: 110px;
    line-height:100px;
  }
  h1 span {
    font-size:40px;
    line-height:40px;
  }
  p {
    max-width: unset !important;
  }
  a {
    display:inline;
  }
}

@media only screen and (min-width: 1000px)  {
  h1 {
    font-size: 140px;
    line-height:140px;
  }
  h1 span {
    font-size:45px;
    line-height:45px;
  }
  p {
    font-size: 25px;
  }
}

@media only screen and (min-width: 1250px)  {
  h1 {
    font-size: 175px;
    line-height:175px;
  }
  h1 span {
    font-size:50px;
    line-height:50px;
  }
}
