.contact {
  background-color: #e9d9c4;
  padding: 40px 0;
  margin-top: 25px;
}

.contact-content {
  margin: auto;
  text-align: center;
  max-width: 750px;
}

.contact-content p {
  text-align: justify;
}

.contact-content ul {
  margin: 5px 0 20px 30px;
  line-height: 0.2em;
}

.author-photo {
  object-fit: cover;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.contact h2 {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 30px;
  margin: 20px 0;
}

.contact p {
  font-size: 18px;
  line-height: 1.5;
}

.social-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

#twitter {
  background-image: url(twitter.svg);
  background-color: #00acee;
}

#instagram {
  background-image: url(instagram.svg);
  background-color: #FFC0CB;
}

#mail {
  background-image: url(mail.svg);
  background-color: #215590;
}

.social-link {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 5px 5px;
  padding: 10px;
  border-radius: 15%;
  transition: background-color 0.3s ease;
  transition: transform 0.3s ease;
}

#instagram:hover {
  transform: scale(1.2);
  background-color: #fccad3;
}

#twitter:hover {
  transform: scale(1.2);
  background-color: #26b8f0;
}

#mail:hover {
  transform: scale(1.2);
  background-color: #2f598a;
}
