body {
  background-color: #151718;
  padding: 0;
  margin: 0;
}

.container {
  display: flex;
  flex-direction: column;
}

.appbar {
  align-self: stretch;
  height: 48px;
  border-bottom: 2px solid #202425;
  padding-inline: 8px;
  padding-block: 8px;
  z-index: 100;
}

.landing {
  height: calc(100vh - 70px);
  display: flex;
  flex-direction: row;
  z-index: 1;
}

.appbar .logo {
  height: 100%;
}

.appbar img {
  height: 100%;
  object-fit: contain;
}

.landing .left,
.landing .right {
  /* width: 0; */
  height: 100%;
  padding-inline: 10%;
}

.landing .right {
  /* flex: 0 10 0; */
  flex-basis: 0.5;
  flex-grow: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-icon {
  height: 40%;
  aspect-ratio: 1;
  background-image: url("./assets/icon-modified.png");
  background-size: cover;
}

/* .app-icon img {
    height: 100%;
    object-fit: contain;
} */

.landing .left {
  /* flex: 10 0 10; */
  flex-basis: 2;
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.headline {
  color: #ecedee;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 3%;
}

.subline {
  color: #9ba1a6;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1rem;
  margin-bottom: 5%;
}

.demo-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #cbff00;
  padding: 12px 16px 12px 16px;
  line-height: 27px;
  border-radius: 12px;
  align-self: flex-start;
  text-decoration: none;

  color: #242e00;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 3%;
}

.footer {
  padding-bottom: 16px;
  flex-direction: column;
}

.footer .link-row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-bottom: 16px;
}

.footer a {
  color: #697177;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  text-decoration: underline;
}

.footer .contact-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-inline: 16px;
  margin-bottom: 8px;
  color: #697177;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  text-align: center;
}

@media (max-width: 800px) {
  .landing {
    flex-direction: column-reverse;
  }
  .demo-btn {
    align-self: stretch;
  }
}
