body {
    font-family: Arial, sans-serif;
    background-color: #87CEEB;
    margin: 20px;
}

img {
    scale: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

img:hover {
    transform: scale(1.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

