.body {
  max-width: 1200px;
  background-color: aquamarine;
  margin: 0px auto;
  display: flex;
  justify-content: space-evenly;
  text-align: center;
}

.container {
  /* align-content: center; */
}

.messenger {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 25px;
  margin-top: 30px;
}

.social {
  display: inline-block;
}
.social a {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 10px 10px 0;
  text-align: center;
  color: #000;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15), inset 0 0 50px rgba(0, 0, 0, 0.1);
}
.social a:hover {
  color: #fff;
}
.social svg {
  margin-top: 7px;
  width: 32px;
  height: 32px;
}
.facebook a:hover {
  background: #3b5998;
}
.instagram a:hover {
  background: #3f729b;
}
.messenger a:hover {
  background: #009bff;
}
.telegram a:hover {
  background: #249bd7;
}
.viber a:hover {
  background: #7b519d;
}
.whatsapp a:hover {
  background: #50b154;
}
.youtube a:hover {
  background: #c4302b;
}
