:root {
  --color-bg: #0f0f0f;
  --color-text: #949f92;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Neue Montreal";
}

h1,
p {
  font-weight: 400;
  line-height: 100%;
}

h1 {
  font-size: 40px;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.row {
  display: flex;
}

.row-1 {
  flex: 3;
}

.row-2 {
  flex: 2;
}

.col {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.5em 10em;
}

.item-tag-1 {
  margin-top: 2em;
}

.item-tag-2 {
  margin-bottom: 2em;
}

.item,
.item-main,
.counter-wrap {
  position: relative;
  width: max-content;
  height: max-content;
}

.item h1,
.item p {
  position: relative;
  top: 40px;
}

.item-revealer,
.item-main-revealer,
.counter-revealer {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.item-revealer:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 105%;
  height: 110%;
  background: var(--color-bg);
  top: 40px;
}

.row-2 {
  justify-content: space-between;
  align-items: flex-end;
  padding: 80px 40px;
}

.row-2 .item-main h1 {
  position: relative;
  top: 280px;
  font-size: 280px;
  line-height: 90%;
}

.item-main-revealer:after {
  content: "";
  position: absolute;
  top: 240px;
  left: 0;
  width: 105%;
  height: 110%;
  background: var(--color-bg);
}

.counter-wrap {
  position: absolute;
  bottom: 0;
  padding: 80px 60px;
}

.counter-wrap h1 {
  position: relative;
  top: 0;
  font-family: "Neue World";
  font-size: 300px;
  font-weight: 300;
  line-height: 80%;
}

.counter-revealer:after {
  content: "";
  position: absolute;
  top: -400px;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
}
