body{
margin:0;
background:#0b0b0b;
color:white;
font-family:Arial;
}

header{
display:flex;
justify-content:space-between;
padding:20px 8%;
background:black;
position:sticky;
top:0;
}

.logo{
font-family:'Bebas Neue';
font-size:32px;
letter-spacing:2px;
}

nav a{
margin-left:25px;
text-decoration:none;
color:white;
font-weight:bold;
}

.hero{

height:90vh;

background:url("https://images.unsplash.com/photo-1503376780353-7e6692767b70") center/cover;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;

}

.hero h1{
font-size:90px;
font-family:'Bebas Neue';
margin:0;
}

.hero h2{
font-size:50px;
color:red;
margin:0;
}

.button{

background:red;
padding:15px 35px;
margin-top:30px;
color:white;
text-decoration:none;
border-radius:6px;

}

section{
padding:90px 10%;
text-align:center;
}

.cards{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
}

.card{
background:#1b1b1b;
padding:30px;
border-radius:10px;
width:220px;
}

.members{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

.member img{
width:150px;
border-radius:50%;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery img{
width:100%;
border-radius:10px;
transition:0.4s;
}

.gallery img:hover{
transform:scale(1.05);
}

form{
max-width:400px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

input, textarea{
padding:12px;
border:none;
border-radius:6px;
}

button{
padding:15px;
background:red;
border:none;
color:white;
cursor:pointer;
}

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