html,
body {
  margin: 0;
  padding: 0;
  font-family: "Source Serif Pro", serif;
}
.homepage {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.image {
  width: 100%;
}

.download-link {
  display: block;
  text-align: center;
  margin: 0 auto;
  font-family: "Source Serif Pro", serif;
  font-weight: 700;
  color: #4033f4;
  transition: all 0.2s linear;
}

.download-link:hover {
  color: #100787;
}

.list {
  -webkit-column-count: 4;
  -moz-column-count: 4;
  column-count: 4;
}

@media only screen and (max-width: 599px) {
  .list {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}

@media only screen and (min-width: 600px) and (max-width: 768px) {
  .list {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .list {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
}
