.container {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto auto auto auto;
  box-sizing: border-box;
  margin: 0 auto;
  gap: 10px;
  padding: 20px;
}

.container > * {
  border: 1px solid rgb(0, 0, 0);
}


.a {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  grid-row: 1 / span 1;
  grid-column: 1 / span 3;
  width: 100%;
}

.a1 {
  font-size: xx-large;
}

.a2 {
  font-size: xx-large;
}

.a3 {
  font-size: xx-large;
}

.b {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-row: 2 / span 1;
  grid-column: 2 / span 1;
}

.b1 {
  font-size: xx-large;
}

.b2 {
  font-size: large;
}

.c {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-row: 3 / span 1;
  grid-column: 2 / span 1;
}

.d {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 400px;
  grid-row: 4 / span 2;
  grid-column: 1 / span 3;
}

.d img {
  aspect-ratio: 1/1;
  height: 200px;
  width: 200px;
  object-fit: cover;
}

.e {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-row: 6 / span 1;
  grid-column: 2 / span 1;
}