
.grid {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  height: 100vh;
  width: 100vw;
}
.cell1 {
  display: flex;
  grid-area: 1 / 1 / 2 / 2;
}
.cell2 {
flex-direction: column;
  display: flex;
  align-items: flex-end;
  grid-area: 1 / 2 / 2 / 3;
}
.cell3 {
  display: flex;
  align-items: flex-end;
 
  grid-area: 2 / 1 / 3 / 2;
}
.cell4 {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;

  grid-area: 2 / 2 / 3 / 3;
}

small {
	font-size: 1.3rem;
	line-height: 1.1;
	font-family: "Inter", "Courier New", monospace, "Courier New", Icons;
	font-style: normal;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.9);
}

.text-container {
	width: 87%;

}

.text-block {
	display: flex;
    gap:11px;
}

a {
    color: inherit;
	text-decoration: none;
}