
body{
  padding: 0;
  margin: 0;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh
  min-content
}
h1{
  color: #ffffff;
  font-size:25px;
  font-weight: bold;
  font-family: monospace;
  letter-spacing: 6px;
  cursor: pointer;
  text-align:center;
  margin:30px;
}
h1 span{
  transition: .5s linear
}
h1:hover span:nth-child(1){
  margin-right: 5px
}
h1:hover span:nth-child(1):after{
  content: "'";
}
h1:hover span:nth-child(2){
  margin-left: 30px
}
h1:hover span{
  color: #fff;
  /**text-shadow: 0 0 10px #fff,
               0 0 20px #fff, 
               0 0 40px #fff;**/
}
div {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    font-family: monospace;
    letter-spacing: 10px;
    cursor: pointer
  }
  div span{
    transition: .5s linear
  }
  div :hover span:nth-child(1){
    margin-right: 5px
  }
 /** div :hover span:nth-child(1):after{
    content: "'";**/

  div :hover span:nth-child(2){
    margin-left: 30px
  }
  div:hover{
    color: rgb(255, 0, 0);
}
  div:hover span{
    color: rgb(0, 0, 0);
    text-shadow: 0 0 10px rgb(0, 0, 0),
                 0 0 20px rgb(0, 0, 0), 
                 0 0 40px rgb(0, 0, 0);
 }

.A{
   color:rgb(255, 255, 255);
 }
