html {
  background-color: #0d0d0d;
}

body {
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  margin: 0;
  padding: 20px;
  background-color: #0d0d0d;
  color: white;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  box-sizing: border-box;
}

#title {
  font-size: 2.5em;
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

#blurb {
  font-size: 0.9em;
  max-width: 700px;
  margin: 0 auto 0 auto;
}

#brands {
  font-size: 1.5em;
  font-weight: 600;
  margin-top: 3em;
  margin-bottom: 1em;
}

main {
  flex-grow: 1;
}

.icon-group {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.icon-group a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 15px;
  color: white;
}

.icon-group img {
  height: 150px;
  width: auto;
  display: block;
}

#footer {
  margin-top: 6em;
  font-size: 0.85em;
  color: #777777;
}

@media (max-width: 1024px) {
  #blurb {
    max-width: 90%;
  }
  .icon-group img {
    height: 150px;
  }
}

@media (max-width: 767px) {
  body {
    padding: 15px;
  }

  #title {
    font-size: 2em;
  }

  #blurb {
    font-size: 1em;
  }

  #brands {
    font-size: 1.5em;
  }

  .icon-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    padding: 0 10% 0 10%;
  }

  .icon-group a {
    margin: 0;
  }

  .icon-group img {
    height: 120px;
    width: auto;
  }
}

@media (max-width: 480px) {
  #title {
    font-size: 1.75em;
  }
}