* {
  box-sizing: border-box;
}

body {
  background: #ffffff;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
  padding: 0;
  max-width: none;
  width: 100%;
  margin: 0;
}

nav {
  width: 100%;
  height: auto;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

nav h1 {
  margin: 0;
  text-align: center;
}

nav h1 .logo {
  height: 32px;
  width: auto;
  display: block;
}

.content-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 0 0;
  margin-bottom: 20px;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 65%;
  background-image: url("/img/plans_background.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 0;
}

.invite-container {
  background: #ffffff;
  border-radius: 24px;
  width: 100%;
  max-width: 380px;
  margin: 0 24px;
  padding: 40px 24px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.app-store-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 20px 16px 32px;
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.app-store-buttons a {
  display: block;
}

.app-store-buttons img {
  height: 48px;
  width: auto;
  display: block;
}
