html, body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

    background-color: aliceblue;
}

.aware img {
    scale: 0.5;
    animation: glow 1.2s ease-in-out infinite;
}

@keyframes glow {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
        filter: brightness(1.2) contrast(1.2) saturate(1.4);
    }

    100% {
        opacity: 0.8;
    }
}