@import url('http://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
*
{
   margin: 0;
   padding: 0;
   font-family: 'Poppins', sans-serif;
}
body
{
   display:flex;
   justify-content: center;
   align-items: center;
   min-height: 100vh;
   background: linear-gradient(45deg, rgb(133, 132, 132), #333);
   background-attachment: fixed;
}

.container
{
    position: relative;
    width: 1150px;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.container .cards
{
    position: relative;
    width: 300px;
    height: 420px;
    background: #fff;
    margin: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
    transition: 0.5s;
}
.container .cards .circle
{
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    clip-path: circle(180px at center 0);
    text-align: center;
}
/*.container:hover .cards{
    filter:blur(20px);
    transform:  scale(0.9);
    opacity: 0.5;
}*/
.container .cards:hover{
    filter: blur(0px);
    transform: scale(1.1);
    opacity: 1;
}
.container .cards .circle h2
{
    color:#fff;
    font-size: 4.5em;
    padding: 30px 0;
}
.container .cards .content{
    position: absolute;
    bottom: 10px;
    page-break-after: 20px;
    text-align: center;
}

.container .cards .content p{ color: #666;}
.container .cards img{ width: 70%; height: auto; text-align: center; border-radius: 10px;}
.container .cards .content a{
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color:#fff;
    border-radius: 40px;
    text-decoration: none;
    margin-top: 20px;
}
.container .cards:nth-child(1) .circle,
.container .cards:nth-child(1) .content a{
    background: #c0c0c0;
}
.container .cards:nth-child(2) .circle,
.container .cards:nth-child(2) .content a{
    background: #ffaf00;
}
.container .cards:nth-child(3) .circle,
.container .cards:nth-child(3) .content a{
    background: #cd7f32;
}
