.thank-you {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 160px);
}

.thank-you__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.thank-you__header {
  margin-bottom: var(--space-6);
}

.thank-you__title {
  font-size: var(--font-size-3xl);
}

.thank-you__body p:last-of-type {
  margin-bottom: 0;
}

.thank-you__body {
  margin-bottom: var(--space-8);
}

.thank-you__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .thank-you__title {
    font-size: var(--font-size-4xl);
  }

  .thank-you__actions {
    flex-direction: row;
  }
}
