*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    overflow:hidden;
    color:#fff;
    height:100vh;

    background:linear-gradient(-45deg,
    #0f172a,
    #312e81,
    #0f766e,
    #6d28d9,
    #0ea5e9,
    #1e293b);

    background-size:600% 600%;
    animation:gradientBG 8s ease infinite;
}

/* Animated Gradient */

@keyframes gradientBG{

0%{
background-position:0% 50%;
}

25%{
background-position:50% 100%;
}

50%{
background-position:100% 50%;
}

75%{
background-position:50% 0%;
}

100%{
background-position:0% 50%;
}

}

/* 3D Background Glow */

body::before{

content:"";

position:fixed;

width:900px;
height:900px;

background:radial-gradient(circle,
rgba(255,255,255,.25),
transparent 70%);

top:-250px;
left:-250px;

filter:blur(80px);

animation:moveGlow 12s linear infinite;

}

body::after{

content:"";

position:fixed;

width:700px;
height:700px;

background:radial-gradient(circle,
rgba(0,255,255,.25),
transparent 70%);

bottom:-250px;
right:-250px;

filter:blur(80px);

animation:moveGlow2 10s linear infinite;

}

@keyframes moveGlow{

0%{
transform:translate(0,0) rotate(0deg);
}

50%{
transform:translate(250px,150px) rotate(180deg);
}

100%{
transform:translate(0,0) rotate(360deg);
}

}

@keyframes moveGlow2{

0%{
transform:translate(0,0) rotate(0deg);
}

50%{
transform:translate(-220px,-120px) rotate(-180deg);
}

100%{
transform:translate(0,0) rotate(-360deg);
}

}

/* Glass Card */

.card{

position:relative;

z-index:10;

width:min(90%,700px);

margin:90px auto;

padding:45px;

text-align:center;

background:rgba(255,255,255,.12);

border:1px solid rgba(255,255,255,.2);

backdrop-filter:blur(18px);

border-radius:25px;

box-shadow:
0 25px 60px rgba(0,0,0,.45);

transform-style:preserve-3d;

animation:floatCard 5s ease-in-out infinite;

}

@keyframes floatCard{

0%,100%{

transform:
rotateX(0deg)
rotateY(0deg)
translateY(0);

}

50%{

transform:
rotateX(8deg)
rotateY(-8deg)
translateY(-18px);

}

}

.card h1{

font-size:55px;

letter-spacing:2px;

margin-bottom:15px;

text-shadow:
0 0 20px cyan;

}

.card p{

font-size:22px;

margin:15px 0;

}

.owner img{

width:150px;

height:150px;

border-radius:50%;

border:5px solid white;

box-shadow:
0 0 35px rgba(255,255,255,.5);

margin-top:30px;

transition:.5s;

}

.owner img:hover{

transform:
scale(1.1)
rotateY(360deg);

}

footer{

position:fixed;

bottom:20px;

width:100%;

text-align:center;

font-size:18px;

letter-spacing:2px;

}