span {
  font-family: Helvetica;
}

div {
  font-family: Helvetica;
}

.profile {
  border-radius: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 200px;
  height: 200px;
  margin-top: 50px;
}

.title-div {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 0px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding-left: 45px;
}

h1 {
  font-family: Helvetica;
  margin-top: 20px;
  font-size: 45px;
}

.title {
  font-family: Helvetica;
  margin-top: 20px;
  font-size: 35px;
  text-align: center;
  color: #FFFFFF;
  font-weight: bold;
  padding-right: 15px;
}

.email {
  margin-top: 0px;
  transform: scale(1);
  transition: transform 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, box-shadow 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s;
}
.email:hover {
  transform: scale(1.2)
}

h2 {
  font-family: Helvetica;
  text-align: center;
  color: #FFFFFF;
  margin-top: 50px;
  font-size: 25px;
}

.social-button {
  cursor: pointer;
  max-width: 750px;
  width: 95%;
  height: 60px;
  display: flex;
  justify-content: center;
  text-decoration: none;
  font-weight: normal;
  text-align: center;
  color: #22263e;
  margin: auto;
  font-size: 17px;
  margin-bottom: 20px;
  border: none;
  background-color: #d8d7d6;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 8px 0px;
  border-radius: 40px;
  transform: scale(1);
  transition: transform 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, box-shadow 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s;
}
.social-button:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 4px 12px 0px;
  transform: scale(1.05);
}

.social-txt {
  padding-top: 2px;
}

.sub-footer {
  font-family: Helvetica;
  font-weight: normal;
  text-align: center;
  font-size: 14px;
  margin-top: 60px;
  color: #FFFFFF;
}

.footer {
  width: 100%;
  height: 3rem;
  position: fixed;
  bottom: 10px;
  font-family: Helvetica;
  font-weight: normal;
  font-size: 12px;
  color: #FFFFFF;
  text-align: center;
  box-sizing: inherit;
}

.content-link {
  text-decoration: underline solid transparent;
  font-weight: bold;
  color: var(--biolink-color);
  cursor: pointer;
  transition: color 150ms linear, text-decoration 150ms linear;
 }

 .content-link:hover {
  color: var(--primary-hover);
  text-decoration: underline solid currentColor;
 }
 .footer-links {
  padding: 0;
  display: flex;
  margin: auto;
  text-align: center;
  justify-content: center;
  list-style-type: none;
  width: 100%;
  margin-bottom: 15px;
  font-size: 0.75rem;
}

.footer-link {
  margin-right: 10px;
}

.footer-link:after {
  padding: 0;
  list-style-type: none;
  content: "";
  position: absolute;
  height: 10px;
  width: 1px;
  background-color: var(--primary-color);
  margin: 3px;
  margin-left: 4px;
  font-size: 0.75rem;
}
.footer-link:last-child:after {
  display: none;
}