body {
  background-color: aqua;
}
.container-share {
  background-color: rgba(248, 250, 255, 0.295);
  text-align: center;
  padding: 1rem;
  height: fit-content;
}
.container-share textarea {
  background-color: rgba(142, 231, 253, 0.356);
  color: white;
  padding: 1em;
  height: 10rem;
  font-family: sans-serif;
  letter-spacing: 0.2rem;
  word-spacing: 0.5rem;
  font-weight: 550;
}
.container-share textarea:active {
  background-color: yellow;
}
.container-share textarea:hover {
  background-color: white;
  color: black;
}
.container-share button {
  background-color: rgba(180, 100, 255, 0.445);
  border: solid green 3px;
  color: white;
}
button:hover {
  border: coral solid 3px;
  background-color: cornflowerblue;
  border-radius: 30px;
}

/* each post */
.container-post-each {
  background-color: rgba(75, 67, 52, 0.479);
  padding: 1rem;
}
.container-post-each:hover {
  opacity: 0.8;
}
.container-post-each a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: larger;
  background-color: rgba(230, 255, 91, 0.137);
  padding: 0.2em;
}
.left-a {
  justify-content: left;
  text-align: left;
}

.user-i {
  width: 50px;
  height: 50px;
  /* float: left; */
  border-radius: 50%;
}
.float-left {
  right: 0;
  position: inherit;
}
