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

body{

background:#050505;

font-family:Arial,Helvetica,sans-serif;

color:white;

}

header{

height:82px;

display:flex;

justify-content:space-between;

align-items:center;

padding:0 45px;

background:#000;

}

nav{

display:flex;

gap:45px;

}

nav a{

color:white;

text-decoration:none;

font-size:15px;

}

.logo{

font-size:36px;

font-weight:bold;

}

.buttons{

display:flex;

gap:14px;

}

button{

padding:12px 22px;

border-radius:8px;

cursor:pointer;

}

.login{

background:transparent;

border:1px solid #666;

color:white;

}

.join{

background:#7a33ff;

border:none;

color:white;

}

.hero{

width:100%;

height:720px;

overflow:hidden;

background:#000;

}

.hero img{

width:100%;

height:100%;

display:block;

object-fit:cover;

object-position:center;

}
