:root {
  --primary: #309cc7;
  --primary600: #237BAB;
}

body {
  font-family: poppins, sans-serif;
  background-color: #FAFAFA;
}

.container {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.title-icon {
  margin-right: 4px;
}

.header {
  padding: 1rem;
  background-color: transparent;
  text-align: center;
}

.header h1 {
  font-size: 40px;
}

.header img {
  border-radius: 15px
}

.step {
  background-color: white;
  border: 1px solid #cccccc;
  padding: 1rem;
  border-radius: .5rem;
}

.step.danger {
  background-color: #ff8c8c;
  border: 1px solid red
}

a {
  color: var(--primary);
  text-decoration: underline;
  transition: all .2s ease-in-out 0s;
}

a:hover {
  color: var(--primary600);
}

a.store-link {
  text-decoration: none;
}

h2 {
  margin-top: 0;
}

.my-1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mr-1 {
  margin-right: 1rem;
}

#join-team-button {
  max-width: 12.5rem;
  background-color: var(--primary);
  border-radius: .5rem;
  padding: .5rem 1rem;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
}

#join-team-button:hover {
  background-color: var(--primary600);
}

.hint {
  margin-top: 1rem;
}

.footer {
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 40px 50px 0px;
  border-top: 1px solid #eee;
  text-align: center;
  color: #908f8f;
}

.footer a {
  text-decoration: underline;
  color: #908f8f;
}
