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

body{
	background-image: linear-gradient(black, 30%,rgb(53, 5, 14),rgb(112, 0, 0));
	width: 100%;
	min-height:100vh;
}

.container {
	width: 80%;
	margin: 6% auto;
	height: 700px;
	display: flex;
	gap: 7px;
	justify-content: center;
}
.card {
	border-radius: 50px;
	flex-basis: 9.5%;
	object-fit: cover;
	background-color: red;
	transition: 1s;
	transition-timing-function: ease;
	overflow: hidden;
	object-fit: cover;
	box-shadow: -10px 10px 20px ;
}

.card__img{
	min-width: 1200px;
	max-width: 100%;
	height: 700px;
}

.card:hover{
	flex-grow: 1;
}