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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #161623;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#f00, #f0f);
    clip-path: circle(30% at right 90%);
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#2196f3, #e91e63);
    clip-path: circle(20% at 10% 10%);
}

.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    z-index: 1;
}

.container .card {
    position: relative;
    width: 280px;
    height: 400px;
    margin: 30px;
    box-shadow: 10px 10px 15px rgba(0,0,0,.5);
    border-radius: 20px;
    background: rgba(255, 255, 255, .1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .5);
    border-left: 1px solid rgba(255, 255, 255, .5);
    backdrop-filter: blur(5px);
}

.container .card .content {
    padding: 20px;
    text-align: center;
    transition: .5s;
    transform: translateY(150px);
    opacity: 0;
}

.container .card:hover .content {
    opacity: 1;
    transform: translateY(0);
}

.container .card .content h2 {
    position: absolute;
    top: -30px;
    right: 30px;
    font-size: 8rem;
    color: rgba(255, 255, 255, .09);
    pointer-events: none
}

.container .card .content h3 {
    color: #fff;
    font-size: 1.5rem;
    z-index: 1;
}

.container .card .content p {
    font-size: 1rem;
    color: #fff;
    font-weight: 300;
}

.container .card .content a {
    text-decoration: none;
    background-color: #fff;
    padding: .5rem .7rem;
    border-radius: 20px;
    color: #000;
    position: relative;
    display: inline-block;
    margin-top: 14px;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
}