body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    gap: 70px;
}

.img-box {
    width: 360px;
    height: 360px;
    border: 2px solid #222;
    overflow: hidden;
    transition: .3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Efekt po najechaniu */
.img-box:hover {
    border-color: #fff;
    box-shadow: 0 0 25px #ffffffb2;
    transform: scale(1.03);
}
