*{
  margin: 0;
  padding: 0;
  background: #009688;
}
.awesome{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
}
.text{
  color: #fff;
  font-size: 80px;
  font-family: sans-serif;
  font-weight: 900;
  cursor: pointer;
}
.hiden{
  max-width: 0;
  opacity: 0;
  transition: 0.7s ease-in;
}
.text:hover .hiden{
  opacity: 0.7;
  max-width: 1em;
}
