
body{
margin:0;
font-family:tahoma;
background:#081120;
color:white;
}
.header{
position:sticky;
top:0;
padding:20px 8%;
display:flex;
justify-content:space-between;
background:rgba(0,0,0,.4);
backdrop-filter:blur(20px);
}
.logo{
font-size:30px;
font-weight:bold;
color:#60a5fa;
}
nav a{
color:white;
text-decoration:none;
margin-right:20px;
}
.hero{
min-height:90vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
background:radial-gradient(circle,#2563eb,#081120);
padding:30px;
}
.hero h1{
font-size:70px;
}
.hero p{
font-size:24px;
color:#d1d5db;
}
.btn{
background:#2563eb;
padding:16px 35px;
border-radius:50px;
color:white;
text-decoration:none;
}
.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
padding:80px 8%;
}
.card{
background:rgba(255,255,255,.05);
border-radius:30px;
overflow:hidden;
transition:.4s;
}
.card:hover{
transform:translateY(-10px);
}
.card img{
width:100%;
height:250px;
object-fit:cover;
}
.card h3{
padding:25px;
}
footer{
padding:50px;
text-align:center;
background:#020617;
}
