body {
  margin: 1vh 1vw;
  width: 98vw;
  height: 98vh;
  display:flex;
  flex-direction: column;
}

footer {
  height: 100px;
}

h1 {
  width: 100%;
  text-align: center;
  font-size: 36px;
}

h2 {
  width: 100%;
  text-align: center;
  font-size: 26px;
}

.center-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.text-centering {
  text-align: center
}

/* Grid*/
.grid {
  column-gap: 10px;
  row-gap: 5px;
  display: grid;
  grid-template-columns: max-content max-content max-content max-content;
}

.full-span-grid {
  /* Goes from column 2 to 4 */
  grid-column: 2 / 5;
}

/* Other */

.img-holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 30px
}

.icon {
  width: inherit;
  height: inherit;
  margin: 0 5px 0 0
}
