*{
    margin: 0px;
    padding: 0px;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

img {
    width: 200px;
    transition: all 0.3s;
    margin: 50px;
}

img:hover {
    scale: 2;
    border-radius: 40px;
    opacity: 0.4;
}

