#player {
  background-color: #333;
  width: 100px;
  height: 100px;
  border: none;
  border-radius: 4.25px;
  text-align: center;
  color: #fff;
  font-family: Calibri;
  line-height: 100px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  animation-name: fadeNicce;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
  animation-duration: 1500ms;
}

#player > p {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
}

body {
  background-color: #eee;
}

* {
  margin: 0;
}

@keyframes fadeNicce {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeNicce {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#typedtext {
  color: lime;
  font-family: 'Courier New';
  font-size: 22px;
}