@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@500&display=swap");

* {
  padding: 0;
  margin: 0;
}

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

body {
  background: #000000db;
  color: #ffffff;
  text-transform: uppercase;
}

.section-hero {
  display: block;
  width: 100%;
  height: 100vh;
  min-height: 300px;
  background: url("../img/glued_paper.png");
}

.promo {
  font-weight: 500;
  font-size: 5vw;
  letter-spacing: 12px;
  text-align: center;
  line-height: 9vw;
  margin-bottom: 30px;
  font-family: "Montserrat Alternates", sans-serif;
}

.brand {
  font-family: "Roboto", sans-serif;
  -webkit-text-stroke: 2px #ffffff;
  color: transparent;
  letter-spacing: 6vw;
  font-size: 11vw;
  font-weight: 900;
  margin-right: -6vw;
}

.container {
  width: 100%;
  height: 100vh;
  min-height: 300px;
  padding: 30px;
  background: #000000db;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
