:root {
  --text: rgb(24, 24, 24);
  --background: rgb(243, 243, 243);
  --together_red: #f44522;
  --together_red_select: #f445227c;
}

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  padding:0;
  margin: 0;
  font: inherit;
}

html {
  min-height: 100dvh;
}

h1,h2,h3,h4 {
  padding:0;
  margin:0;
  line-height: .8;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

/* TYPOGRAPHY */

h1::selection, p::selection, a::selection {
    background-color: var(--together_red_select);
}

body {
  font-family: 'IBM Plex Sans';
  font-size: .9rem;
}

a {
 color: var(--text); 
 text-decoration: none;
}

a:hover {
  color: var(--together_red);
  text-decoration: underline;
}

/* GENERAL */

body{
  padding:.5rem;
  background-color: var(--background);
  line-height: 1.3;
}

.container {
  max-width: 1500px;
  margin-inline: auto;
}

.grid, .info_grid {
  width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}


/* HEADER */
header {
  margin-bottom: 4rem;
}

h1 {
    font-family: 'IBM Plex Serif', serif;
    font-size: clamp(1rem, 5vw, 2rem);
    font-weight: normal;
    line-height: .8;
}

.blockspam {
  display: none;
}

/* BANNER */

.banner {
  font-family: 'IBM Plex Serif';
  display: flex;
  flex-wrap: wrap;
  column-gap: .2em;
  row-gap: .2em;
  align-items: center;
  /* justify-content: space-between; */
  font-size: clamp(1.5rem, 9vw, 9rem);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 4rem;
  filter: drop-shadow(0px 0px 2px #d3d3d3);

}


.banner p {
  z-index: 10;
}



.img img, .video video {
  height: 1em;
  z-index: 0;
}

.banner .img:nth-child(2n+1) {
  transform: scale(.1.5);
}

/* .video video {
  height:1em;
  z-index: 0;
} */