.TextMessage {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -30%);

  bottom: 1;
  height: auto;
  padding: 30px;
  font-size: 24px;
  background: #d9ac6a;
  width: 60%;
  border-radius: 10px;
  font-family: "middle-world", sans-serif;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
  .TextMessage {
    width: 40%;

  }
}

.TextMessage_p {
  color: white;
}

.TextMessage span {
  opacity: 0;
}
.TextMessage span.revealed {
  opacity: 1;
}

.TextMessage_img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  top: -50px;
  left: 5px;
  background-color: #efdda5;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid white;
}

.TextMessage_name {
  position: absolute;
  top: -25px;
  left: 79px;
  border: 3px solid white;
  background-color: #efdda5;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: none;
}
.TextMessage_button {
  margin: 0;
  font-size: 18px;
  padding: 0;
  background: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: 9999;
}
/* -------- */

.TextMessage_social {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}
.TextMessage_social button {
  width: 50px;
  height: 50px;
  font-size: 20px;
  display: flex;
  flex-direction: row;
  position: relative;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: transparent;
  cursor: pointer;
  background-image: url("/images/buttons/Button_Blue.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 10px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.TextMessage_social button:active {
  background-image: url("/images/buttons/Button_Blue_Pressed.png");
  color: #fff;
}
a {
 
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none; /* Alt çizgiyi kaldırır */
  color: inherit; /* Rengi varsayılan hale getirir */
}
