body {
  margin: 0px;
  padding: 0px;
  color: black;
  width: 100vw;
  background: white;
  background-color: white;
  font-family: "Figtree", sans-serif;
  font-weight: 400;
}

.buffer {
  height: 88px;
}

.buffer.small {
  height: 64px;
}

.header {
  width: 100vw;
  position: -webkit-sticky;
  position: sticky;
  background: white;
  top: -1px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  z-index: 3;
}

.header > .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 144px;
  padding: 18px 0px;
  padding-top: 19px;
  height: 88px;
  overflow: visible;
  box-sizing: border-box;
  transition: width ease 0.7s;
  -webkit-transition: width ease 0.7s;
}

.header > .nav > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.header.is-pinned > .nav {
  width: min(calc(60vw + 75px), calc(60vh + 150px));
}

.header > .nav > .button-container {
  overflow: hidden;
  width: 0px;
  transition: width ease 0.7s, opacity ease 0.7s;
  -webkit-transition: width ease 0.7s, opacity ease 0.7s;
  box-sizing: border-box;
  height: 41px;
  border-radius: 21px;
  opacity: 0;
}

.header.is-pinned > .nav > .button-container {
  width: 118px;
  opacity: 1;
}

.header > .nav > .button-container > button {
  color: transparent;
  transition: color ease 0.7s;
  -webkit-transition: color ease 0.7s;
}
.header.is-pinned > .nav > .button-container > button {
  color: white;
}

.header > .nav > a > img {
  width: 144px;
  transition: width ease 0.7s;
  -webkit-transition: width ease 0.7s;
}

.header > .nav > a {
  text-decoration: none;
}

.header > .nav > a > p {
  overflow: hidden;
  width: 65px;
  color: black;
  font-weight: 600;
  opacity: 1;
  transition: width ease 0.7s, margin ease 0.7s, opacity ease 0.7s;
  -webkit-transition: width ease 0.7s, margin ease 0.7s, opacity ease 0.7s;
  margin-left: 10px;
}

.header:not(.is-pinned) > .nav > a > p {
  width: 0px;
  margin-left: 0px;
  opacity: 0;
}
.header.is-pinned > .nav > a > img {
  width: 56px;
}

.content {
  width: min(calc(60vw + 75px), calc(60vh + 150px));
  box-sizing: border-box;
  min-height: calc(100vh - 88px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.container {
  box-sizing: border-box;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 88px);
}

h1 {
  margin: 0px;
  padding: 0px;
  font-size: 59px;
  line-height: 62px;
  font-weight: 600;
  text-align: center;
}

h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
  margin: 0px;
  margin-top: 20px;
  text-align: center;
}

#app-icon {
  width: 200px;
  height: 183px;
  transform: translateY(100px);
  margin-top: 0px;
  opacity: 0.5;
  transition: transform ease 1.2s, width ease 1.2s, height ease 1.2s,
    margin-top ease 1.2s, opacity ease 1.2s;
  -webkit-transition: transform ease 1.2s, width ease 1.2s, height ease 1.2s,
    margin-top ease 1.2s, opacity ease 1.2s;
}

#app-icon.is-pinned {
  transform: translateY(0px);
  width: 228px;
  height: 209px;
  margin-top: -26px;
  opacity: 1;
}

h2 {
  margin: 0px;
  font-size: 42px;
  line-height: 44px;
  font-weight: 600;
  text-align: center;
}

.footer {
  width: min(calc(60vw + 75px), calc(60vh + 150px));
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.footer > div.wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer > p,
.footer > div.wrapper > a {
  font-size: 14px;
  font-family: "Figtree", sans-serif;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.3);
  text-decoration: none;
  padding: 12px;
  margin: 0px;
}

.hero {
  width: min(calc(60vw + 75px), calc(60vh + 150px));
  padding-bottom: 88px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

#loader {
  width: 48px;
  height: 48px;
  margin-bottom: 48px;
  opacity: 0.4;
}
