
*{margin:0;padding:0;box-sizing:border-box}
html,body{height:100%;background:#000;font-family:Arial,Helvetica,sans-serif}
.hero{
 height:100vh;
 display:flex;
 flex-direction:column;
 justify-content:center;
 align-items:center;
 background:#000;
}
.logo{
 max-width:min(900px,80vw);
 height:auto;
 filter:drop-shadow(0 0 10px rgba(255,255,255,.15));
}
nav{
 margin-top:70px;
 display:flex;
 gap:40px;
 letter-spacing:6px;
}
nav a{
 color:#fff;
 text-decoration:none;
 font-size:14px;
 transition:.3s;
}
nav a:hover{
 opacity:.6;
}
