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

body{
font-family:'Poppins',sans-serif;
color:#404040;
background:linear-gradient(-45deg,#ffd6f3,#d7c8ff,#bcecff,#d4ffe7);
background-size:400% 400%;
animation:gradient 18s ease infinite;
min-height:100vh;
}

@keyframes gradient{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}

body::before{
content:"";
position:fixed;
inset:0;
pointer-events:none;
background-image:
radial-gradient(white 1px,transparent 1px),
radial-gradient(rgba(255,255,255,.7) 1px,transparent 1px);
background-size:120px 120px,180px 180px;
background-position:20px 30px,70px 90px;
opacity:.35;
}

.hero{
text-align:center;
padding:80px 20px 40px;
}

.hero h1{
font-size:3rem;
font-weight:700;
margin-bottom:10px;
}

.quote{
font-size:1.1rem;
opacity:.8;
margin-bottom:35px;
}

.counter{
display:inline-flex;
flex-direction:column;
align-items:center;
justify-content:center;
width:170px;
height:170px;
border-radius:50%;
background:rgba(255,255,255,.45);
backdrop-filter:blur(10px);
box-shadow:0 10px 30px rgba(0,0,0,.12);
margin-bottom:25px;
}

#dreamCount{
font-size:3.3rem;
font-weight:700;
}

.counter small{
text-transform:uppercase;
letter-spacing:2px;
font-size:.7rem;
}

.started{
opacity:.75;
line-height:1.8;
}

main{
max-width:900px;
margin:auto;
padding:30px 20px 80px;
}

.creation{
display:flex;
gap:30px;
align-items:center;
margin-bottom:40px;
padding:25px;
border-radius:24px;
background:rgba(255,255,255,.45);
backdrop-filter:blur(10px);
box-shadow:0 12px 30px rgba(0,0,0,.1);
}

.creation img{
width:280px;
border-radius:18px;
object-fit:cover;
}

.content{
flex:1;
}

.date{
font-size:.85rem;
text-transform:uppercase;
letter-spacing:2px;
color:#777;
margin:8px 0 20px;
}

footer{
text-align:center;
padding:40px;
opacity:.75;
}

@media(max-width:700px){
.hero h1{font-size:2.2rem;}
.creation{
flex-direction:column;
}
.creation img{
width:100%;
}
}
