@import url("fonts/Inter/Inter-VariableFont_opsz,wght.0a77e23a8fdb.ttf");

* {
  font-family: 'Inter', sans-serif;
}

.brand-font {
  font-family: 'Inter', sans-serif;
}

html, body {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
}

body {
  display: grid;
  grid-template-columns: 1fr 95% 1fr;
  grid-template-rows: 1fr 80% 1fr;
}

.bg-image {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1000;
  transition: filter 350ms ease-in-out;
}

.dim {
  filter: brightness(0.70);
}

.content {
  grid-column: 2 / 2;
  grid-row: 2 / 2;
}
