html,
body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

.noselect {
  user-select: none;
}

/* ---- reset ---- */
canvas {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}

#background {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  background: #26c6a6;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #26c6a6 0%, #3396d6 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #26c6a6 0%, #3396d6 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #26c6a6 0%, #3396d6 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#26c6a6", endColorstr="#3396d6", GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

.center {
  position: relative;
  z-index: 1000;
  width: 100%;
  max-width: 768px;
  text-align: center;
  padding-top: 24px;
  padding-bottom: 24px;
}
.center img {
  max-width: 80%;
}
.center .text {
  color: #fff;
  font-size: 17px;
}
.center .text a {
  color: #fff;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
  display: block;
}
.center .text a:hover {
  color: rgba(255, 255, 255, 0.75);
}
.center .text a i {
  margin-right: 8px;
}

.links-grid {
  padding: 48px 15px;
  display: grid;
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 768px) {
  .links-grid {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    padding: 64px 6px;
  }
}
.links-grid .links-grid__item {
  display: block;
}
.links-grid .links-grid__item img {
  max-width: 100%;
  height: auto;
  transition: transform 0.4s;
}
.links-grid .links-grid__item img:hover {
  transform: scale(1.05);
}

/*# sourceMappingURL=main.css.map */
