.row{ 
	display:flex;
	 justify-content:space-between;
	width:100%;
	gap:20px;
	max-height:480px;
	overflow:hidden;
	padding:20px 5px;
}
 
main ul{
padding:0px 25px;
}

.row img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;     
	border-radius: 15px;
}

h3,h2,h1{
	margin-top:15px;
}

@media (max-width: 650px) {
    .row{
 flex-direction:column
    }
	
	#content{
		padding:15px;
	}
	.row{
		max-height:100%;
	}
}