body {
  background-color:  #555;
  font-family: verdana;
}

#bg {
  position: relative;
  margin: 4em auto;
  height: 400px;
  width: 700px;
  box-sizing: box-border;
  border: 5px solid #050;
  background-color: #090;
  box-shadow: 0 0 15px #7a7;
  border-radius: 5px;
  overflow: none;

}
#text {
  text-align: center;
}
#name {
  position: absolute;
  bottom: 0;
  left: 60px;
  weight: 900;
  font-size: 80px;
  /**width of word is 420px**/ ''
}
#o-letter {
  position: absolute;
  bottom: 15px;
  left: 518px;
  weight: 900;
  font-size: 80px;
  animation-name: falling;
  animation-duration: .2s;
  animation-delay: 5s;
  animation-fill-mode: forwards;
  
}

@keyframes falling {
  from {bottom: 15px; left: 518px;}
  to {bottom: -100px; left: 518px;}
  visibility: none;
}

img {
  position: absolute;
  top: 140px;
  left: 415px;
  width: 200px;
  height: 200px;
}