﻿.black-lives-matter {
    font-size: 3vw;
    line-height: 4vw;
    margin: 0;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 900;
    background: url(https://raw.githubusercontent.com/s1mpson/-/master/codepen/black-lives-matter/victim-collage.png);
    background-size: 40%;
    background-position: 50% 50%;
    -webkit-background-clip: text;
    color: rgba(0,0,0,0.08);
    animation: zoomout 15s ease 500ms forwards;
}

@keyframes zoomout {
    from {
        background-size: 80%;
    }

    to {
        background-size: 2%;
    }
}
