
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 100%;
  position: relative;
}

html {
  background: black;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1;
  width: 100%;
  overflow-x: hidden;

  @include desktop-sm-down {
    font-size: 15px;
  }

  @include tablet-down {
    font-size: 14px;
  }

  @include phone-down {
    font-size: 13px;
  }

  @include phone-sm-down {
    font-size: 12px;
  }
}

body {
  color: white;
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  font-size: rems(20);

  main {
    flex: 1;
  }
}

main#main {

  section {
    .container {
      h2 {
        letter-spacing: -4.5px;
        font-size: rems(90);
        text-align: center;
        margin: 0 0 rems(40);
        font-weight: 400;
        color: blue;
        text-transform: uppercase;
      }
    }
  }

	section#hero {
		background-image: url('img/hero.jpg');
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		min-height: 100vh;

    @include tablet-down {
      min-height: 90vh;
    }

    @include phone-down {
      min-height: 70vh;
    }
  }
}