* {
    margin: 30;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #111;
    padding: 20px;
    font-family: Arial, sans-serif;
}


.gallery img {
    width: 95%;
    height: 700px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(255,255,255,0.15);
}