body {
    margin: 0;
    background-color: #FBF4E2; /* бежевый фон */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.pluse{
    max-width: 200px;
    animation: pluseZoom 2s infinite ease-in-out;
}

@keyframes pluseZoom{
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}