body {
  font-family: "Helvetica";
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #333;
  background-color: #f1f1f1;
}

* {
  box-sizing: border-box;
}

.indexFile {
  width: 100%;
  max-width: 1440px;
  display: grid;
  grid-template: auto 1fr/repeat(3, 1fr);
  grid-column-gap: 2%;
  grid-row-gap: 2%;
  margin: 0 auto;
  padding: 40px 4%;
}

.index__title {
  margin: 0;
  font-size: 45px;
  line-height: 64px;
  font-weight: 100;
  grid-area: 1/1/2/5;
  text-align: center;
}

.index__section {
  border-radius: 4px;
  padding: 10px 30px;
  background-color: #fff;
  box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.1);
  justify-self: stretch;
  align-self: flex-start;
}

.index__section-heading {
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
  margin: 5px auto;
  text-transform: uppercase;
}

.index__list {
  margin: 20px auto;
  padding-left: 0;
}

.index__item {
  margin-bottom: 2px;
  display: flex;
  justify-content: space-between;
  text-transform: capitalize;
  text-decoration: none;
  margin-bottom: 10px;
}

.index__item-link {
  color: #3a75f5;
  padding-right: 20px;
}

.index__list {
  list-style: none;
}

.done {
  padding: 0 10px;
  color: #333;
  border-radius: 20px;
  min-width: 135px;
  text-align: center;
  border: 1px solid #56b956;
}

.WIP {
  color: #333;
  padding: 0 10px;
  border-radius: 20px;
  min-width: 135px;
  text-align: center;
  border: 1px solid red;
}

@media (min-width: 0) and (max-width: 1024px) {
  .indexFile h1 {
    grid-area: 1/1/2/3;
  }

  .indexFile {
    grid-template: 80px repeat(auto-fill, minmax(100px, 1fr))/1fr 1fr;
    grid-row-gap: 20px;
  }
}
@media (min-width: 0) and (max-width: 768px) {
  .indexFile {
    grid-template: 80px repeat(auto-fill, minmax(100px, 1fr))/1fr;
  }

  .indexFile h1 {
    font-size: 28px;
    line-height: 36px;
    grid-area: 1/1/2/2;
  }

  .indexFile h2 {
    font-size: 20px;
    line-height: 28px;
  }

  .index__item {
    word-break: break-all;
  }

  .index__section {
    align-self: start;
  }
}