*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	background: #ffe;
	position: relative;
	height: 100vh;
	background: url(../img/bgs.jpg) no-repeat center/cover;	
	background-attachment:fixed;
}
.coniainer{
	display: flex;
	justify-content:center;
}
.coniainer button{
	/* cursor: pointer; */
	border-radius: 25px;
	padding: 10px 15px;
	margin: 20px 50px 30px 30px;
	border: none;
	width: 120px;
	background: black;
	transition: 0.5s;
	color: antiquewhite;
}

.box{
	display: flex;
	justify-content:flex-start;
	flex-wrap: wrap;
	margin-top: 10px;
}
.box div{
 margin: 0px 50px 50px 50px;
 width: 280px;
 border: 2px solid white;
 padding-top: 30px;
}
.box h5{
	text-align: center;
	font-size: 20px;
	color: #fff;
	margin: 10px 0px;
}
.box img{
	width: 216px;
	height: 384px;
	margin-left: 31px;
	border-radius: 5px;
}
.box button{
	/* cursor: pointer; */
	border-radius: 25px;
	padding: 10px 15px;
	display: block;
	margin: 15px auto;
	border: none;
	width: 120px;
	background: #fff;
	transition: 0.5s;
	color: #000;
}
button:hover {
	width: 150px;
	color: peru;
}
p{	
	margin: 0 auto;
	color: #ffe;
	width: 80%;
	font-size: 18px;
	text-align: center;
	background-image: linear-gradient(to right, blue , green);
	border-radius: 10px;
}