html {
  box-sizing: border-box;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('./BricolageGrotesque-VariableFont_opsz,wdth,wght.ttf') format('truetype');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Bricolage Grotesque', sans-serif;
  margin: 0;
  font-size: 1em;
  line-height: 1.4;
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.25rem;
  background: url('./background.webp') center / cover no-repeat;
  position: relative;
}

.container::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: white;
  opacity: 0.5;
  pointer-events: none;
}

h1 {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.2;
  color: #1f3299;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 26.25rem;
  /* padding: 0 0 20px 20px; */
  margin: 0;
}
