* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    background-color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery {
    display: flex;
    gap: 20px;
}

.gallery img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.4s ease;
    cursor: pointer;
}