h1,
h2 {
  font-size: 72px;
}

p {
  font-size: var(--font-size-subheading);
}

.contact-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;

  height: 100%;
  max-width: 768px;
  z-index: 1;
}

.alien {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50%;
}

@media screen and (width <=1024px) {
  .alien {
    display: none;
  }

  .contact-section {
    height: calc(var(--section-height) * 0.75);
  }
}