@import url('https://fonts.googleapis.com/css?family=Oswald');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    overflow: hidden;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}

h3 {
    margin-bottom: 0;
    text-align: center;
}

small {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.fa-heart {
    color: red;
}

.loveMe {
    margin: auto;
    width: 300px;
    height: 440px;
    max-width: 100%;
    cursor: pointer;
    position: relative;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    background: url('https://images.unsplash.com/photo-1504215680853-026ed2a45def?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQi0jEyMDd9&auto=format&fit=crop&w=334&q=80')
    no-repeat center center/cover;
}

.loveMe .fa-heart {
    position: absolute;
    animation: grow 0.6s linear;
    transform: translate(-50%, -50%) scale(0);
}

@keyframes grow {
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(10);
    }
}