#contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#contact p {
  width: 180px;
  text-align: center;

  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

#contact a {
  text-decoration: none;
  color: var(--header-beige);

  margin-top: 32px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;

  font-size: 21px;
  line-height: 32px;
}

#contact a:hover {
  text-decoration: underline;
}

@media (min-width: 1024px) {
  #contact p {
    width: 100%;

    font-size: 24px;
    line-height: 32px;
  }

  #contact a {
    margin-top: 48px;

    font-size: 32px;
    line-height: 48px;
  }
}
