@import 'https://fonts.googleapis.com/css?family=Prompt';

* {
	font-family: 'prompt',serif;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	
}

.flex h2{
position: relative;
	text-decoration:none;
	color:black;
	border-bottom: 4px solid #8e44ad;
	font-size:40px;
	font-weight:500;
	width:100%;	
	text-align:center;
	box-shadow:-1px 5px 5px 0px #f5eef8;
	z-index:0;
	margin-left:auto;
	margin-right:auto;
}

.box {
	position:relative;
	padding:10px;
	margin:5px;
	margin-bottom:10px;
	background-color:whitesmoke;
	box-shadow:0px 0px 3px 0px grey;
	text-align:center;
	width:300px;
	border-radius:5px;
	display:block;
}

.box:hover{
	box-shadow:0px 0px 2px 0px grey;	
}

.box img{
	width: 200px;
}

.box p{
	font-weight:400;
	font-size:1.1vw;
}

.box p1{
	position: absolute;
	left:0px;
	top:0px;
	color:white;
	background-color:red;
}

.box p2{
	position: absolute;
	left:54px;
	top:100px;
	color:white;
	font-size:50px;
	background-color:red;
	border-radius:5px;
	box-shadow:0px 0px 5px 0px grey;
}
@media screen and (max-width: 600px) {
	.box img{
	width: 100%;
	}
	.box p{
	font-size:5vw;
	}

}