* {
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  display: grid;
  place-items: center;
  height: 100vh;
  max-height: 100vh;
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
  color: #222;
}
main {
  display: grid;
  grid-gap: max(1vmin, 10px);
  place-items: center;
}
section {
  display: grid;
  grid-gap: max(1vmin, 10px);
  place-items: center;
}
h1 {
  font-size: max(10vmin, 32px);
  line-height: 90%;
  font-family: "Fasthand", cursive;
}
h2 {
  font-size: max(5vmin, 16px);
  font-weight: normal;
  opacity: 0.8;
}
i {
  font-size: max(5vmin, 16px);
}
.icon {
  width: max(5vmin, 24px);
  height: max(5vmin, 24px);
  fill: currentColor;
  transition: transform 0.5s;
}
.header {
  padding-top: 50vmin;
  grid-gap: calc(max(1vmin, 10px) / 2);
}
.links {
  margin-top: max(1vmin, 10px);
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: calc(max(2vw, 10px) / 2);
  width: min-content;
}
.earth {
  width: 100vmin;
  height: 40vh;
  background: #000000;
  background: linear-gradient(#000000, #00000000, #00000000, #00000000);
  position: absolute;
  bottom: -10vh;
  border-radius: 100%;
  opacity: 0.02;
}
a {
  color: #1778f2;
  transition: 0.5s;
}
a:hover {
  filter: brightness(1.1);
  text-shadow: 0px 0px 8px #00204050;
}

a:hover .icon {
  transform: scale(1.1);
}

a:active {
  transform: scale(0.9);
  transition: 0.1s;
}

a:active .icon {
  transform: scale(0.9);
  transition: transform 0.1s;
}

.bg {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0.3;
  z-index: -2;
  display: grid;
  place-items: center;
}

.bg img {
  position: relative;
  left: -2vmin;
  width: 50vmin;
}
