/*lets do css yay*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(-45deg, #ff6f91, #ffc75f, #d65db1);
    background-size:400% 400%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: suii 10s ease infinite;
}
@keyframes suii{
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100%{background-position: 0% 50%;}
}
.card{
    max-width: 480px;
    width: 90%;
    background: rgba(255, 255, 255, 0.25);
    padding: 40px 30px;
    border-radius: 22px;/*perfection*/
    text-align: center;
    z-index: 1;
    backdrop-filter: blur(15px);
}
.image-box{
    position: relative;
    width: 160px;
    height: 160px;
    margin: auto;
    margin-bottom: 20px;
}
.image-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.7);
}
.age{
    background: #ff6f91;
    color: #fff;
    position: absolute;
    bottom: -6px;
    right: -6px;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}
h1{
    font-family: 'Pacifico', cursive;
    font-size: 2.6rem;
    color: #fff;
}
h2{
    font-weight: 400;
    color: #fdfdfd;
    opacity: 0.9;
    margin-bottom: 18px;
}
.message{
    font-size: 0.95rem;
    color: #f5f5f5;
    line-height: 1.6;
    margin-bottom: 25px;
}
footer{
    color: #f0f0f0;
    font-size: 0.8rem;
    opacity: 0.85;/*looks good 0.85 is nice */
}
/*little beat responsiveness for my lovely wishes*/
@media(max-width:480px){
    .wishes{
        grid-template-columns: 1fr;
    }
}