#how-to-use {
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/bg-for-how-to-use.png');
  background-size: cover;
  background-position: center;
}
#how-to-use .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#how-to-use h2 {
  color: var(--white30);
}
.how-to-use__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.how-to-use__item {
  background-color: var(--black50);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.how-to-use__item_number {
  font-family: 'Inter', serif;
  font-weight: 700;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pink);
  padding: 13px 11px 13px 11px;
  color: white;
}
.how-to-use__item_text {
  font-size: 20px;
  line-height: 27px;
  color: var(--white20);
}

@media (min-width: 768px) {
  .how-to-use__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 12px;
  }
  .how-to-use__items div:nth-child(5) {
    grid-column: span 2;
  }
}
@media (min-width: 1200px) {
  .how-to-use__items div:nth-child(1) {
    grid-area: a;
  }
  .how-to-use__items div:nth-child(2) {
    grid-area: b;
  }
  .how-to-use__items div:nth-child(3) {
    grid-area: c;
  }
  .how-to-use__items div:nth-child(4) {
    grid-area: d;
  }
  .how-to-use__items div:nth-child(5) {
    grid-area: e;
  }
  .how-to-use__items {
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
      'e e a'
      'd  c b';
    gap: 20px;
  }
}
