body{
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	background-color: #50C7C7;
	min-height: 100vh;
	width: 100vw;
}
@media screen and (max-width: 1200px){
	body{
		padding: 20px 0;
		flex-direction: column;
		row-gap: 30px;
	}	
}
.card{
	position: relative;
	margin: 0 20px;
	min-width: 350px;
	min-height: 500px;
	border-radius: 30px;
	background-color: #1BB0B5;
	overflow:hidden;
	box-shadow: 0px 0px 10px black;
}
.card::before{
	content:"";
	position: absolute;
	top: 0;
	width: 100%;
	height: 202px;
	border-radius: 30px 30px 52% 0;
	background-color: #1BB0B5;
	z-index: 1;
}
.card::after{
	content:"";
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 300px;
	border-radius: 52% 0 30px 30px;
	background-color: white;
}
.fill{
	position: absolute;
	right: 0;
	top: 100px;
	width: 150px;
	height: 100px;
	background-color: white;
}
.inside{
	position: absolute;
	width: 100%;
	height: 100%;
	text-align: center;
	z-index: 2;
}
.inside h1{
	text-transform: capitalize;
	letter-spacing: 1.5px;
	font-size: 36px;
	color: white;
	margin-bottom: 10px;
}
.inside img{
	width: 110px;
}
.comment{
	position: absolute;
	bottom: 0;
	left: 25px;
	width: 90%;
	height: 55%;
	border-radius: 52% 0 0 0;
	word-wrap: break-word;
}
.comment p::first-letter{
    font-size: 18px;
}
.inside button{
	position: absolute;
	right: 0;
	bottom: 15px;
	width: 125px;
	height: 45px;
	background-color: #1BB0B5;
	border:none;	
	border-radius: 5px;
	font-size: 18px;
	color: white;
	text-transform: uppercase;
	font-weight: bold;
	box-shadow: 4px 3px 5px gray;
}
.inside button:hover{
	background-color: #1EC4C9;
}
.inside button:active{
	background-color: #1BB0B5;
}