.content {
  max-width: 80rem;
  margin: auto;
  text-align: left;
  line-height: 1.5;
}
h1 {
  margin: 2rem 0 0 0;
}
h2, h3, p, ul{
  margin: 0 0 2rem 0;
}
.contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  border-top: 1px solid white;
  padding-top: 1rem;
}
.contact-right {
  text-align: right;
}
.contact-right p {
  margin: 0;
}
.linktree {
  /*margin-top: 40px;*/
}
.linktree img {
  width: 40px;
  height: 40px;
  transition: filter 0.3s ease, transform 0.3s ease;
}
.linktree img:hover {
  filter: drop-shadow(0 0 6px #ffffff);
  transform: scale(1.1);
}