.profile-img{
	width: 350px;
	height: 350px;
	border-radius: 50%;
	object-fit:cover;
	object-position: center;
} 
body {
    margin: 0;
    background: #111;
}

.slider {
    width: 750px;
    height: 450px;
    overflow: hidden;
    position: relative;
    margin: 50px auto;
    border-radius: 10px;
}

.slides {
    display: flex;
    width: calc(750px * 19);
    animation: slide 500s linear infinite;
}

.slides img {
    width: 750px;
    height: 450px;
    object-fit: cover;
}

/* Pause on hover */
.slider:hover .slides {
    animation-play-state: paused;
}

/* Animation (Right → Left) */
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
    background: rgba(255,255,255,0.5);
    color: black;
}
