#contact {
  font-family: "Afacad", sans-serif;
  font-weight: 400;

  .short-line {
    display: flex;
    position: relative;
    padding-bottom: 2px;
    /* spacing between text and line */
  }

  .short-line::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    /* shifts line in from left */
    width: 50%;
    /* underline is 60% of text width */
    height: 2px;
    background-color: rgb(255, 255, 255);
  }

  .contact-info {
    @media (max-width: 750px) {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    h3 {
      font-size: 20px;
      line-height: 100%;
      letter-spacing: 0%;
    }

    a,
    p {
      font-size: 30px;
      line-height: 100%;
      letter-spacing: 0%;
    }
  }
}
