.connect-socials {
  display: flex;
  margin-bottom: 2rem;
  text-decoration: none;
}
.connect-socials div {
  padding: 10px 12px;
  background-color: #dc4077;
  color: #fff;
  border-radius: 50%;
}
.social-media-div {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
}
#message {
  width: 100%;
  height: calc(1.5em * 10); /* 20 lines tall */
  line-height: 1.5em;
  resize: none; /* prevent manual resizing */
  padding: 12px;
  font-size: 1rem;
  box-sizing: border-box;
  white-space: pre-wrap; /* wraps text to next line */
  overflow-y: auto;
  padding: 9px 16px;
  margin: 5px;
  width: 100%;
  font-size: smaller;
  border-radius: 5px;
  border: none;
  background-color: rgba(237, 15, 89, 0.051);
}

/* Optional: Style the placeholder for better readability */
#message::placeholder {
  white-space: pre-wrap;
  word-wrap: break-word;
  color: grey;
  font-size: 16px;
}
@media (max-width: 550px) {
  #message::placeholder {
    font-size: 12px;
  }
}
