@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
}

body
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #000;
}

h2
{
    font-size: 3em;
    font-weight: 900;
    color: #222;
    letter-spacing: 5px;
    cursor: pointer;
}

h2 span
{
    transition: 0.5s;
}

h2:hover span:nth-child(1)
{
    margin-right: 10px;
}
h2:hover span:nth-child(1)::after
{
    content: "'";
}
h2:hover span:nth-child(2)
{
    margin-left: 40px;
}
h2:hover span
{
    color: #fff;
    text-shadow: 0 0 10px #fff,
                 0 0 20px #fff,
                 0 0 40px #fff,
                 0 0 80px #fff,
                 0 0 120px #fff,
                 0 0 160px #fff,

}