*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{

background:#121212;

color:white;

}

header{

display:flex;

justify-content:space-between;

align-items:center;

padding:20px 50px;

background:#1f1f1f;

}

nav a{

color:white;

margin-left:20px;

text-decoration:none;

}

nav a:hover{

color:#00d084;

}

.hero{

height:80vh;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

}

.page{

padding:60px;

}

.card{

background:#252525;

padding:20px;

margin:20px 0;

border-radius:10px;

}

form{

display:flex;

flex-direction:column;

gap:20px;

width:400px;

}

input,
textarea{

padding:15px;

border:none;

border-radius:8px;

}

button{

padding:15px;

background:#00d084;

border:none;

border-radius:8px;

cursor:pointer;

color:white;

}

button:hover{

background:#00a86b;

}