
body{
margin:0;
font-family:Arial,sans-serif;
background:url('../img/background.png') center/cover fixed;
color:white;
background-color:#020617;
}

.hero{
position:relative;
height:100vh;
overflow:hidden;
}

.header-img{
width:100%;
height:100%;
object-fit:cover;
opacity:.55;
}

.overlay{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
}

.overlay h1{
font-size:80px;
margin-bottom:20px;
}

.overlay p{
font-size:24px;
margin-bottom:30px;
}

.overlay a{
background:#009dff;
padding:15px 30px;
color:white;
text-decoration:none;
border-radius:12px;
}

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
padding:80px;
}

.card{
height:300px;
background:rgba(255,255,255,.05);
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,.1);
border-radius:20px;
display:flex;
align-items:center;
justify-content:center;
}

footer img{
width:100%;
display:block;
}
