body {
  margin: 0;
  font-family: sans-serif;
  background-color: #000;
  color: #fff;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-grow: 1;
  padding-bottom: 90pt;
}

.container > * {
  margin: 0;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 10px;
}

.appstore-badge {
  width: 160px;
  height: 48px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.appstore-badge:hover {
  transform: scale(1.1);
}

.main-text {
  font-family: "SF Pro Rounded Bold", "SF Pro Rounded Bold Placeholder",
               -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 60px;
  letter-spacing: -0.2px;
  line-height: 1;
  margin: 0;
  text-align: center;
  color: #fff;
}

footer {
  position: fixed;
  bottom: 20pt;
  left: 25px;
  right: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer a {
  font-family: "Geist", "Geist Placeholder", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.4px;
  line-height: 120%;
  text-align: left;
  color: rgb(115, 115, 115);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer div a {
  margin-left: 16px;
  color: rgb(115, 115, 115);
  text-decoration: none;
}

footer div a:hover {
  text-decoration: underline;
  color: rgb(180, 180, 180);
}
