body {
    margin: 0;
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Шумовой слой – зелёный */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("assets/background.png");
    pointer-events: none;
    z-index: 0;
}

body>* {
    position: relative;
    z-index: 1;
}

button {
    margin: 20px;
    padding: 12px 30px;
    font-size: 18px;
    background: #f0c040;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #e0b030;
}

img {
    filter: url(#redFilter);
}

.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 80vw;
    height: 80vh;
}

.container img {
    position: absolute;
    transition: transform 0.15s ease-out;
    /* плавное движение */
    will-change: transform;
    /* оптимизация */
    /* если изображения имеют прозрачность, можно добавить */
    display: block;
    max-width: 100%;
    height: auto;
}