textarea {
  color: white;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(0,0,0,.15);
  border-color: rgba(0,0,0,.3);
  border-radius: .2em;
  box-shadow: transparent 0 .15em .3em;
  transition: border-color .2s ease-in-out,
              box-shadow .2s ease-in-out;
  height: 6em;
}
textarea:hover,
textarea:focus {
  border-color: rgba(0,150,200,1);
  box-shadow: rgba(0,150,200,.7) 0 0 .5em;
}


.article {
  color:white;
}
.article a {
  font-size: 1.4em;
  color:yellow;
}