    body {
      margin: 0;
      font-family: monospace, sans-serif;
      scroll-behavior: smooth;
      background-color: #222831;
      color: #EEEEEE;
    }

#main {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow-y: scroll;
  overflow-x: hidden;
}

#main::before {
  content: "";
  position: absolute;
  left: 50px; 
  top: 60%;
  transform: translateY(-50%);
  width: 500px;   
  height: 500px;  
  background-color: #004b4f;
  border-radius: 50%;
  filter: blur(100px); 
  z-index: 0;
}

#main::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #00ADB5 0%, transparent 50%, #00ADB5 100%);

}

    p {
      margin: 0;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 75px;
      box-shadow: 0px 0px 5px 1px #393E46;
    }

    .nav-title {
      font-family: "Bebas Neue", sans-serif;
      font-size: 40px;
      color: #EEEEEE;
    }

    nav {
      display: flex;
      gap: 20px;
      align-items: flex-end;
    }

    .nav-item {
      transition: color 0.3s ease;
      font-size: 20px;
      font-family: monospace;
        font-weight: 300;
      text-decoration: none;
      color: #EEEEEE;
    }

    .nav-item:hover {
      color: #00ADB5;
    }




    .pfp {
      height: 80%;
      top: 125px;
      object-fit: cover;
      position: absolute;
      left: 150px;

    }

.hero {
  display: flex;
  align-items: center;
  justify-content: flex-start; 
  height: 80vh;
  gap: 50px;
  padding-left: 150px; 
}

.hero h1 {
  font-size: 60px;
  font-weight: 600;
  text-align: left;
  margin-left: 400px;
  margin-top: 80px;
}

#typewriter {
  color: #00ADB5;
  border-right: 3px solid #00ADB5;
  padding-right: 5px;
  display: inline-block; 
  animation: blink 0.7s infinite;
}
    @keyframes blink {
      50% { border-color: transparent; }
    }

    @media screen and (max-width: 900px){

    }

 .section {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  scroll-margin-top: 100px;
  position: relative;

}

.section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 100px;
  color: #00ADB5;
  position: relative;
  top: -100px;
  margin-bottom: 40px;
  text-shadow: 0 0 15px #00ADB5;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  width: 80%;
  position: relative;
  top: -50px;
}

.skill-card {
  background-color: #393E46;
  padding: 20px;
  border-radius: 15px;
  font-size: 18px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 5px #00ADB5;
}

.skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px #00ADB5;
}

.social-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -70px;

 
}
.social-links a{
  display: flex;
  font-size: 20px;
  align-items: center;
   text-decoration: none;
   color: azure;
   font-family: monospace, sans-serif;
   text-align: center;
filter: drop-shadow(0 0 5px #00ADB5);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-links a:hover{
 transform: scale(1.2);
  filter: drop-shadow(0 0 20px #00ADB5);
}
.social-links a img {
    transition: transform 0.3s ease, filter 0.3s ease;
  width: 60px;
  height: 60px;

  margin: 20px;
}


.social-icon{
  padding: 20px;
}

.section p {
  max-width: 800px;
  font-size: 20px;
  line-height: 1.6;
  color: #EEEEEE;
  text-shadow: 0 0 5px #00ADB5;
  padding: 20px;
  position: relative;
  top: -100px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  width: 100%;
  position: 
  relative;

  top: -50px;
}

form input, form textarea {
  padding: 15px;
  border: none;
  border-radius: 10px;
  background-color: #393E46;
  color: #EEEEEE;
  font-size: 16px;
}

form button {
  padding: 15px;
  border: none;
  border-radius: 10px;
  background-color: #00ADB5;
  color: #222831;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

form button:hover {
  background-color: #008c99;
  transform: translateY(-3px);
  box-shadow: 0 0 15px #00ADB5;
}


.section::after {
content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #00ADB5 0%, transparent 50%, #00ADB5 100%);
}


::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #222831;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #00ADB5;
  border-radius: 10px;
  border: 3px solid #222831;
  transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #00CED1;
}

::-webkit-scrollbar-corner {
  background: #222831;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #00ADB5 #222831;
}



@media screen and (max-width: 1200px) {
  header {
    padding: 12px 40px;
  }

  .nav-title {
    font-size: 32px;
  }

  .nav-item {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 48px;
    margin-left: 200px;
  }

  .pfp {
    height: 70%;
    left: 100px;
  }

  .section h2 {
    font-size: 80px;
  }

  .section p {
    font-size: 18px;
  }
}

@media screen and (max-width: 900px) {
  header {
    flex-direction: column;
    padding: 12px 20px;
    gap: 10px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    text-align: center;
  }

  .hero h1 {
    font-size: 36px;
    margin: 20px 0 0 0;
  }

  .pfp {
    position: relative;
    height: 50%;
    left: 0;
    top: 0;
    margin-bottom: 20px;
  }

  .section h2 {
    font-size: 48px;
    top: -40px;
  }

  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    width: 90%;
    gap: 12px;
    top: -20px;
  }

  .social-links {
    flex-wrap: wrap;
    gap: 15px;
    top: -30px;
  }

  .social-links a {
    font-size: 16px;
  }

  .social-links a img {
    width: 40px;
    height: 40px;
  }

  .section p {
    font-size: 16px;
    padding: 10px;
    top: -40px;
  }
}


@media screen and (max-width: 600px) {
  .nav-title {
    font-size: 28px;
  }

  nav {
    gap: 10px;
  }

  .nav-item {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .section h2 {
    font-size: 36px;
    top: -20px;
  }

  .section p {
    font-size: 14px;
    top: -20px;
  }

  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8px;
  }

  .skill-card {
    font-size: 14px;
    padding: 12px;
  }

  form {
    max-width: 100%;
    gap: 12px;
  }

  form input,
  form textarea,
  form button {
    font-size: 14px;
    padding: 10px;
  }
}
