body {
  color: var(--text-dark);
  background-color: var(--background-dark);
}

a, ul, li {
  color: var(--text-dark);
}

.container {
  max-width: 393px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wrapper {
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.logo-container {
  width: 180px;
  margin: 0 auto;
  margin-bottom: 84px;
}

.logo-container img {
  width: 100%;
}

.cta-container p {
  text-align: center;
  font-size: 18px;
  font-weight: 300;
}

.btn-group {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
}

.btn {
  border: none;
  background-color: var(--accent);
  color: var(--text-dark);
  padding-block: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.btn p {
  font-size: 16px;
  font-weight: 300;
}

footer {
  padding: 0 24px 24px;
}

.footer-list {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 300;
}


