#links-area {
  background-color: pink;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.link-button {
  background-color: lawngreen;
  border-radius: 10px;
  min-width: 150px;
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 15px;
  margin-right: 15px;
  text-decoration: none;
  color: #333;
}
.link-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 5px;
  margin-right: 10px;
}
.link-text {
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: px;
  margin-right: 10px;
}

@media (max-width : auto) {
	#links-area{
	flex-direction: column;
	}
}