body{
margin:0;
font-family:Arial,sans-serif;
background:#111;
color:white;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:black;
position:sticky;
top:0;
}

header h1{
color:#ff4fa0;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
}

.hero{
height:80vh;
background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?q=80&w=1200&auto=format&fit=crop');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.overlay h2{
font-size:50px;
max-width:700px;
}

.overlay p{
font-size:22px;
}

.btn{
display:inline-block;
margin-top:20px;
padding:15px 30px;
background:#ff4fa0;
color:white;
text-decoration:none;
border-radius:30px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
padding:50px;
}

.card{
background:#1d1d1d;
padding:30px;
border-radius:20px;
text-align:center;
border:2px solid #ff4fa0;
}

footer{
text-align:center;
padding:30px;
background:black;
}
