body {
  background-color: #101218;
  user-select: none;
  font-family: "Open Sans", sans-serif;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
  text-align: center;
  margin: 70px 70px 30px 70px;
}

a {
  text-decoration: none;
  outline: none;
}

h1 {
  color: #cbcbcb;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 0;
}

p {
  color: #cbcbcb;
  font-size: 32px;
}

@keyframes burst_in {
  10% {
    opacity: 0;
    transform: translateY(-1em);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.stagger-1 {
  opacity: 0;
  transform: translateY(-1em);
  animation: burst_in 0.2s cubic-bezier(0.4, 0.21, 0.72, 0.73) forwards;
  animation-delay: 0.06s;
}

.stagger-2 {
  opacity: 0;
  transform: translateY(-1em);
  animation: burst_in 0.2s cubic-bezier(0.4, 0.21, 0.72, 0.73) forwards;
  animation-delay: 0.12s;
}

.stagger-3 {
  opacity: 0;
  transform: translateY(-1em);
  animation: burst_in 0.2s cubic-bezier(0.4, 0.21, 0.72, 0.73) forwards;
  animation-delay: 0.18s;
}

.stagger-4 {
  opacity: 0;
  transform: translateY(-1em);
  animation: burst_in 0.2s cubic-bezier(0.4, 0.21, 0.72, 0.73) forwards;
  animation-delay: 0.24s;
}

.logo {
  height: 100px;
  width: 100px;
  clip-path: circle(50%);
}

.socials {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 300px;
}

.social-div {
  height: 64px;
  width: 300px;
  margin-bottom: 30px;
}

.link-button {
  height: 64px;
  width: 300px;
  border: 2px solid #cbcbcb;
  border-radius: 8px;
  background-color: #101218;
  line-height: 64px;
  justify-content: left;
  transition: all 0.1s;
}

.link-button:hover {
  transform: scale(1.025);
}

.link-icon {
  height: 64px;
  width: 64px;
  float: left;
  margin-left: 10px;
}

.link-label {
  height: 64px;
  width: 300px;
  margin: auto;
}

.social-div-large {
  height: 256px;
  width: 300px;
  margin-bottom: 30px;
}

.link-button-large {
  height: 256px;
  width: 300px;
  border: 2px solid #cbcbcb;
  border-radius: 8px;
  background-color: #101218;
  line-height: 64px;
  justify-content: left;
  transition: all 0.1s;
}

.link-button-large:hover {
  transform: scale(1.025);
}