html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

#h1 {
  font-size: 24px;
  color: white;
  background-color: blue;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  padding-top: 30px;
  padding-left: 55px;
}
.container {
  max-width: 1440px;
  margin: auto;
  background-color: blue;
}

.parent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  grid-auto-rows: minmax(150px, auto);
  padding: 10px 50px 30px 50px;
  /* grid-template-rows: repeat(5, 300px); სანამ ბოლომდე არ დავალაგე nthchild-ები, gridautorows-ც არ მუშაობდა, ამიტომ ისევ ზედა დავტოვე. */
}

.item {
  /* max-width: 300px; დიზაინს მიცვლიდა და წავშალე */
  /* min-height: 300px; არაფერს ცვლიდა და წავშალე */
  height: 100%;
  font-size: 22px;
  font-weight: 500;
  color: blue;
  background-color: white;
  /* border: 5px solid; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  &:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  &:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  &:nth-child(3) {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
  }

  &:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
  }

  &:nth-child(5) {
    grid-column: 4 / 5;
    grid-row: 2 / 4;
  }

  &:nth-child(6) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  &:nth-child(7) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }

  &:nth-child(8) {
    grid-column: 3 / 4;
    grid-row: 3 / 5;
  }

  &:nth-child(9) {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
  }

  &:nth-child(10) {
    grid-column: 4 / 5;
    grid-row: 4 / 5;
  }

  &:nth-child(11) {
    grid-column: 1 / 2;
    grid-row: 5 / 6;
  }

  &:nth-child(12) {
    grid-column: 2 / 4;
    grid-row: 5 / 6;
  }

  &:nth-child(13) {
    grid-column: 4 / 5;
    grid-row: 5 / 6;
  }
}
