body{
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0f0f0f;
  color: #e6e6e6;
}

img{
  max-width: 100%;
}

:root{
  --neon: #00ffe5;
}

::-webkit-scrollbar{
  width: 7px;
}

::-webkit-scrollbar-thumb{
  background: #b56464;
  border-radius: 6px;
}

header{
  background: grey;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 99;
}

header h1{
  font-size: 22px;
  color: var(--neon);
}

nav{
  display: flex;
  gap: 25px;
}

nav a{
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

nav a:hover{
  color: var(--neon);
}

.menu-btn{
  display: none;
  font-size: 25px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px){
  nav{
    position: absolute;
    top: 65px;
    right: 20px;
    background: #111;
    flex-direction: column;
    width: 180px;
    padding: 15px;
    display: none;
    border-radius: 10px;
    border: 1px solid grey;
    box-shadow: 1px 4px 12px #b5a8a8;
  }
  
  nav.active{
    display: flex;
  }
  
  .menu-btn{
    display: block;
  }
}

.hero{
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 25px;
  color: #e6e6e6;
}

.hero h2{
  font-size: 32px;
  color: var(--neon);
}

.hero p{
  max-width: 600px;
  font-size: 16px;
  margin: auto;
}

section{
  padding: 50px 25px;
  max-width: 1100px;
  margin: auto;
}

h2.section-title{
  color: var(--neon);
  margin-bottom: 20px;
}

.project-card{
  background: grey;
  padding: 20px;
  margin: 15px 0;
  border-left: 4px solid var(--neon);
  border-radius: 5px;
  box-shadow: 1px 4px 12px #b5a8a8;
}

.project-card h3{
  margin-top: 0;
}

.project-card a{
  color: var(--neon);
}

footer{
  text-align: center;
  padding: 20px;
  color: #888;
  background: #000;
  margin-top: 40px;
}