@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100&display=swap');

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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: lightblue;
}   

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    padding: 40px 0;

}

.container .card {
    position: relative;
  /*  min-height: 320px;*/
    max-width: 440px;
    box-shadow: inset 5px 5px 5px rgba(0,0,0,0.05),
                inset -5px -5px 5px rgba(255, 255, 255,0.5),
                        5px 5px 5px rgba(0,0,0,0.05),
                        -5px -5px 5px rgba(255, 255, 255,0.5);
    border-radius: 15px;
    margin:30px;             

}
.container .card .box {
    background: lightblue;
    box-shadow: 0 10px 20px rgb(239 233 233 / 60%);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}
.container .card:hover .box  {
 transform: translateY(-50px);
 box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
 background: linear-gradient(45deg,#b95ce4,#4f29cc);
}
.container .card .box .content h2 {
    
position: absolute;
top: -10px;
right: 30px;
font-size: 8em;
color: rgba(0, 0, 0, 0.05);
transition: 0.5s;
pointer-events: none;

}
.container .card:hover .box .content h2 {
    color: rgba(0, 0, 0, 0.10);
}
.container .card .box .content h3 {
    font-size: 1.8em;
    color: #777;
    z-index: 1;
    transition: 0.5s;
    text-align: center;
    padding: 5%;
}
.container .card:hover .box .content h3 {
    color: white;
}
.container .card.box .content p {
    font-size: 1em;
    font-weight: 300;
    color: #777;
    z-index: 1;
    transition: 0.5s;
    text-align: center;
    padding: 3%;
    
}
.container .card.card:hover .box .content p {
    color: white;
}
.container .card .box .content a {
    position: relative;
    display: inline-block;
    padding: 8px 20px ;
    background: #03a9f4;
    margin-top: 15px;
    border-radius: 20px;
    color: #ffff;
    text-decoration: none;
    font-weight: 400;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.52);
    align-items: center;
    transform: translate3d(10px, 10px, 10px);

}
.container .card:hover .box .content a {
    background: crimson;
}
