hr {
  border: 0;
  border-top: 0.2rem dotted #d7a4a6;
  margin: 15px auto;
  max-width: 50%;
}

/* three-dot divider used in place of <hr /> */
.dot-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}
.dot-divider .dot {
  width: 6px;
  height: 6px;
  background-color: #d7a4a6; /* same color as hr */
  border-radius: 50%;
  display: inline-block;
  box-shadow: none;
}

.lead {
  margin: 0.5rem 0 1rem 0;
  color: var(--color-text-secondary);
}

.social-heading {
  text-align: center;
  font-weight: 700;
  margin: 1rem 0 0.5rem 0;
  color: #444;
  font-size: 1rem;
}

button.btn-primary {
  border-radius: 2rem;
}

.socials {
  /* smaller horizontal padding so buttons fit well inline */
  padding: 10px 10px;
  margin-bottom: 0.5rem;
}

/* pushes the content up a bit more than the default 4rem */
.content {
  /* keep comfortable spacing at bottom so inline socials don't overlap content on smaller screens */
  padding: 0rem 0 4.5rem 0;
  max-width: 36rem;
}

.header {
  background-color: rgba(255,255,255,0.75);
  padding: 10px 0;
}

@media (max-width: 420px) {
  .socials {
    padding: 10px 20px;
  }
}

@media (max-width: 350px) {
  .content {
    padding: 0rem 0 12rem 0;
  }
  p {
    font-size: 0.9rem;
  }
}

@media (max-height: 700px) {
  p {
    font-size: 0.9rem;
  }
}
