body {
    margin: 0;
    background: linear-gradient(white, blue, red);
}

main {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: monospace;
    font-size: 15px;
}

main > div {
    height: 150px;
    width: 300px;
    border-radius: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* БАЗОВЫЙ стиль картинки */
main img {
    width: 450px;
    height: auto;

    /* Плавные переходы */
    transition: transform 0.2s ease, width 0.3s ease;

    /* Фикс для мобильных: тач работает корректно */
    touch-action: manipulation;
    cursor: pointer;

    /* Запрет выделения и перетаскивания */
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: auto;
}

/* Адаптив под телефон */
@media (max-width: 500px) {
    main img {
        width: 70vw;
        max-width: 300px;
    }
}

/* ПЛАВНАЯ АНИМАЦИЯ НА ТАП / КЛИК */
main img:active {
    transform: scale(0.9);
}
