*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: #ffffff;
    height: 80vh;
    display: grid;
    place-items: center center;
    font-family: 'Poppins',sans-serif;
}
.header{
    width: 100%;
	display: block;
	position: relative;
  	padding-top:1rem;
	padding-left: 7rem;
}
.footer{
    color: #a0a0a0;
    font-weight: 500;
    font-size: 14px;
	padding-bottom: 10px;
}
.cards{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(25rem,1fr)); 
    padding-top: 10px;
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
    grid-gap: 35px;
}
.card{
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.18);
}
a{
    display: grid;
    height: 40px;
    width: 200px;
    background: linear-gradient(#58bd53,#58bd53);
	position:relative;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
	place-items: center; 
    font-family: "Poppins",sans-serif;
    color: #ffffff;
    font-size: 16px;
    text-decoration:none;
	border-style: groove;
	border-radius: 10px;
	margin-bottom: 20px;	
}
.container{
    position: relative;
    clip-path: polygon(0 0,100% 0, 100% 85%, 0 100%); 
}
.container>img{
  	height: 16rem;
    width: 100%;
    display: block;
    border-radius: 20px 20px 0 0;	
}
.details{
    padding: 5px 20px;
}
.details>h3{
    color: #a0a0a0;
    font-weight: 600;
    font-size: 18px;
    margin: 10px 0 10px 0;
}
.details>p{
  	height: 12rem;
    width: 100%;
	color: #a0a0a0;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
}
