footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f0f0f;
    padding: 15px;
}

footer p {
    cursor: pointer;
    font-size: 0.9rem;
    color: #777;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

footer p:hover {
    color: #FFFFFF;
}