body{
    background-color: #000000;
    color: #FFFFFF;
}
img{
    border-radius: 15px;
    max-height: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}
/* Add hover and active effects with easing in and out*/

img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

img:active {
    transform: scale(0.95);
    transition: transform 0.1s ease-in-out;
}
