* {
  box-sizing: border-box;
  position: relative
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
body {
  background: #fff;
  color: #000;
  font-family: "Poppins", sans-serif;
}
img {
  display: block;
  height: auto
}

hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh
}
hero img {
  max-height: 50vh
}
h1 {
  text-align: center;
  line-height: 1;
  font-size: 10vw
}
p {
  font-size: 2vw;
  text-align: center;
  margin: 0 auto;
  max-width: 700px
}

footer {
  margin-top: 100px;
  font-size: 14px;
  text-align: center;
  padding: 30px
}

@media (max-width: 580px) {
  hero {
    height: 50vh
  }
  hero img {
    max-height: 30vh
  }
  h1 { font-size: 50px }
  .row {padding: 0 5vw }
  main p { font-size: 18px }
  footer .legal { font-size: 12px }
}