body {
  background-color: #242b42;
  font-family: "Space Grotesk", sans-serif;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 150px;
  padding-top: 50px;
  display: flex;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
  color: #98a6d8;
  font-size: 24;
  margin: auto;
}

#tagline {
  width: 450px;
}

#logo {
  padding-top: 2em;
}

h1 {
  color: #31ffce;
  letter-spacing: 0.1em;
  text-align: center;
}

p {
  font-size: 24;
  padding-left: 1em;
  padding-right: 1em;
}

#welcome {
  margin-top: 1em;
  width: 100%;
}

.form-div {
  display: flex;
  margin-top: 2em;
  width: 100%;
  height: auto;
  justify-content: center;
}

form {
  display: flex;
  flex-direction: column;
  width: 90%;
}

label {
  font-size: 48;
}

.email-input {
  width: 100%;
  font-size: 48;
  margin-bottom: 1em;
}

#submit {
  font-size: 36;
  background-color: #31ffce;
  color: #242b42;
  border: none;
  border-radius: 15em;
  padding: 0.5em;
  margin-top: 1em;
  width: 250px;
  height: 90px;
}

#app-stores {
  display: none;
  flex-direction: column;
  width: 75%;
  text-align: center;
  align-items: center;
  margin-bottom: 3em;
}

#app-store-links {
  display: flex;
  justify-content: space-between;
  margin-top: 1em;
  align-items: flex-start;
}

a {
  font-size: 20;
  color: #ff00ff;
  text-align: center;
}

#google-play-badge {
  width: 200px;
  height: auto;
}

#app-store-badge {
  width: 150px;
  height: auto;
  padding-top: 15px;
}

.store-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
  flex: 1;
}

.spinner {
  display: flex;
  border: 16px solid #98a6d8;
  border-radius: 50%;
  border-top: 16px solid #31ffce;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .body {
    display: none;
  }
}
