:root {
  --background-color: #1b1c21;
  --text-color: #FFF;
}

html {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
     -moz-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: -apple-system,BlinkMacSystemFont,sf pro display,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
  overflow: hidden;
  padding: 0 20px;
}

.wrapper {
  align-items: center;
  display: flex;
  height: 100vh;
  justify-content: center;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}

.hero {
  margin-bottom: 30px;
  text-align: center;
  max-width: 700px;
}

.hero h1 {
  line-height: 1;
  margin: 0;
  width: 100%;
}

.hero img {
  height: auto;
  width: 100%;
}

.hero h2 {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

@media (min-width: 320px) and (max-width: 480px) {
  body { padding: 0 30px; }
  .hero h2 { font-size: 1.2rem; }
}