@font-face {
  font-family: some-sans; /* set name */
  src: url(/fonts/ZalandoSans-VariableFont_wdth\,wght.ttf); /* url of the font */
}
body{
  margin: 0;
  padding: 0;
  font-family: some-sans;
  font-size: clamp(24px, 1.2vw + 12px, 32px);
  letter-spacing: -0.72px;
    font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 106;
  text-transform: lowercase;
  background-color: #000;
  color: #616161;
  line-height: 100%;
  /* display: flex;
  align-items: center;
  justify-content: center; */
}
.outer-container{
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-template-rows: auto;
gap: 80px;
padding: 2rem;

}
.intro{
  grid-area:  1 / 1 / 2 / 4;
  min-width: 400px;
}

.header{
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.4px;
}
.highlight{
  grid-area:  2 / 2 / 3 / 5;
  color: #EE3932;
}
@media (min-width: 100px) {

}