.contact-page__name {
  text-align: center;
}

.contact-page__address {
  text-align: center;
  font-style: normal;
  font-size: 1.3rem;
}

.contact-page__social-list {
  list-style-type: none;
  display: flex;
  width: 70%;
  justify-content: space-between;
  margin: 3rem auto;
}

.contact-page__social-list_item {
  width: 16%;
}

.contact-page__social-list_item-icon {
  font-size: 5rem;
}

@media screen and (max-width: 500px) {
  .contact-page__social-list {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    width: 60%;
    justify-content: space-between;
    margin: 3rem auto;
  }

  .contact-page__social-list_item {
    width: 30%;
  }
}