﻿@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/*@keyframes heartbeat {
    0%{
        transform: scale(1);
    }

    30% {
        transform: scale(1.2);
    }

    60% {
        transform: scale(1);
    }

    100% {
        transform: scale(1) rotate(360deg);
    }
}*/

.Ellogo {
    margin-top: -35px;
    max-width: 70px;
    max-height: 700px;
    animation: heartbeat 2.5s infinite;
    /*animation-timing-function: ease-in-out;*/
}