Preview 5 different image styles below and copy their CSS code.
.img-style-1 { border-radius: 15px; width: 300px; height: auto; }
.img-style-2 { border-radius: 50%; width: 150px; height: 150px; object-fit: cover; }
.img-style-3 { border: 5px solid #007bff; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); width: 300px; height: auto; }
.img-style-4 { width: 300px; height: auto; transition: transform 0.3s ease; } .img-style-4:hover { transform: scale(1.1); }
.img-style-5 { filter: grayscale(100%); transition: filter 0.3s ease; } .img-style-5:hover { filter: grayscale(0%); }