*{

margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;

}

body{

background:#0d1117;
color:white;

}

nav{

display:flex;
justify-content:space-between;
padding:25px 10%;
background:#111827;

}

.logo{

font-size:28px;
font-weight:bold;
color:#58a6ff;

}

ul{

display:flex;
gap:40px;
list-style:none;

}

li{

cursor:pointer;

}

header{

height:90vh;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

padding:20px;

}

header h1{

font-size:70px;

margin:15px;

}

header span{

color:#58a6ff;

}

header p{

font-size:22px;

margin-bottom:40px;

color:#aaa;

}

.btn{

background:#238636;

padding:15px 35px;

border-radius:8px;

text-decoration:none;

color:white;

transition:.3s;

}

.btn:hover{

background:#2ea043;

}

section{

padding:80px 10%;

}

h2{

font-size:38px;

margin-bottom:30px;

}

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}

.card,.project{

background:#161b22;

padding:35px;

border-radius:12px;

transition:.3s;

text-align:center;

}

.card:hover,.project:hover{

transform:translateY(-10px);

border:1px solid #58a6ff;

}

footer{

text-align:center;

padding:40px;

color:#888;

}