@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: rgb(81, 0, 81);
}

.container {
    
    position: relative;
    width: 380px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.container .card {
    background: lightblue;
    position: relative;
    width: 300px;
    height: 450px;
    margin: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0,0,0,.2);
    transition: 0.5s;
}

.container .card .circle {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgb(1, 1, 74);
    clip-path: circle(180px at center 0);
    text-align: center;
}

.container .card .circle h2 {
    color: #fff;
    font-size: 2.6em;
    padding: 30px 0;
}

.container .card .content {
    position: absolute;
    bottom: 10px;
    page-break-after: 20px;
    text-align: center;
}

.container .card .content p {
    color: #666;
    padding: 0 20px;
}

.container .card .content a {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background: rgb(1, 1, 74);
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    margin-top: 15px;
    margin-bottom: 10px;
}

.container .content .image-box {
    width: 100px;
    height: 100px;
    z-index: 1000;
    margin: 0 95px 20px 95px;
}

.container .content .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.container .card:hover {
    filter: blur(0px);
    transform: scale(1.1);
    opacity: 1;
    cursor: pointer;
}