<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Image Hover Effect</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            background-color: #f0f2f5;
        }
        .container {
            max-width: 800px;
            margin: 50px auto;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        h1 {
            color: #333;
            text-align: center;
        }
        .image-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 8px;
        }
        .image-container img {
            width: 100%;
            transition: transform 0.5s, filter 0.5s;
        }
        .image-container img:hover {
            transform: scale(1.1);
            filter: brightness(80%);
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>Image Hover Effect</h1>
        <div class="image-container">
            <img src="https:///800x400" alt="Sample Image">
        </div>
    </div>
</body>
</html>