@font-face {
  font-family: 'NHaasGrotesk';
  src: url('assets/NHaasGroteskTXPro-55Rg.woff2') format('woff2'),
    url('assets/NHaasGroteskTXPro-55Rg.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #1f1e1e;
  color: #ffffff;
  font-family: 'NHaasGrotesk', sans-serif;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 20px 0;
}

.logo {
  height: 30px;
}

main {
  display: flex;
  height: calc(100% - 70px);
  position: relative;
}

.wrapper {
  width: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
}

.content h1 {
  font-size: 40px;
  line-height: 1;
  max-width: 690px;
}

.content .body p:first-of-type {
  margin-bottom: 20px;
}

.content p {
  font-size: 14px;
  line-height: 1.2;
  max-width: 650px;
}

.button {
  font-size: 14px;
  line-height: 125%;
  font-weight: 400;
  display: inline-block;
  padding: 10px 18px;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #1f1e1e;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #1f1e1e;
  color: #ffffff;
}

.background-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
}

.background-constellations {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.background-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 900px) {
  .logo {
    height: 37px;
  }

  .content {
    flex-direction: row;
  }

  .content h1 {
    font-size: 55px;
  }

  .content p {
    font-size: 18px;
  }
}
