@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

html{
  scroll-behavior: smooth;
  scroll-padding-top: 200px;
}

:root{
  --color-1: #0f1016;
  --text-color: #f0f0f0;
  --accent-color: #006aff;


  *{
    margin: 0;
    padding: 0;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.logo{
  width: 160px;
  font-size: 1.5em;
}



body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000;
    color: white;
    font-family: Arial, sans-serif;
    height: 100vh;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    min-width: 100vw;
    min-height: 100vh;
}




nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
}


nav .logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

nav .nav-links {
  display: flex;
  list-style: none;
}

nav .nav-links li {
  margin-left: 20px;
}

nav .nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
}

nav a:is(:active, :link, :visited){
  color: rgb(255, 255, 255);
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  nav .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
  }

  nav .nav-links li {
    margin: 15px 0;
    text-align: center;
  }

  nav .burger {
    display: flex;
  }

  nav.active .nav-links {
    display: flex;
  }

  nav.active .burger div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  nav.active .burger div:nth-child(2) {
    opacity: 0;
  }

  nav.active .burger div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

#home {
  margin-top: 60px;
}


.container {
  margin: 0 20px;
}



#bgJs {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

#bgJs2 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}



#bgJs5 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

#BGimg{
  width: 200vh;
  height: 60vh;
}


#overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1; 
    pointer-events: none; 
}

#cursor {
    display: inline-block;
    width: 10px;
    background-color: white;
    margin-left: 5px;
}

#h134 {
    text-align: center;
    color: gold;
}

#wordAnimation {
    display: inline-block;
}

#h1f{
  padding: 46px;
}
#wordAnimation{
  font-size: 20px;
  text-align: center;
  margin: auto;
}

#h1f, #age, #timer {
    text-align: center;
    margin-top: 20px;
}
#ScrollDown{
    text-align: center;
    padding: 292px 0;
}
#h1AboutMe{
    text-align: center;
    font-size: 40px;
}

section{
    height: 100%;
    min-height: 45vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }

  
p {
    font-size: 0.875rem; /* 14px */
    line-height: 1.25rem; /* 20px */
    line-height: 40px ;
    color: #ffffff;
  }

#paragraph1 p{
  word-spacing: 3px;
  padding: 20px;
}

  .skill{
    list-style-type: none;
    width: 500px;
    margin: 60px auto;
    color: #fff;
    padding: 20px;
    box-shadow: 0 14px 28px rgba(199, 199, 199, 0.25), 0 10px 10px rgba(201, 197, 197, 0.22);
  }
  .skill li{
    margin: 20px 0;
    padding: 10px;
  }
  .bar{
    background: #353b48;
    display: block;
    height: 20px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(199, 199, 199, 0.25), 0 1px 2px rgba(201, 197, 197, 0.22);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  }
  .bar:hover{
    box-shadow: 0 14px 28px rgba(0, 0,0,0.25),0 10px 10px hsla(0, 0%, 100%, 0.22);
  }
  
  .bar span{
    height: 20px;
    float: left;
    background: linear-gradient(135deg, rgb(172, 93, 93)0%, rgb(3, 24, 255)100%);
  }
  
  .html{
    width: 90%;
    animation: html 3s;
    color: #0ef;
  }
  .css{
    width: 70%;
    animation: css 3s;
    color: #0ef;
  }
  .python{
    width: 70%;
    animation: python 3s;
    color: #0ef;
  }

  .javaScript{
    width: 40%;
    animation: javaScript 3s;
    color: #0ef;
  }
  @keyframes html{
    0%{
      width: 0%;
    }
    100%{
      width: 90%;
    }
  }
  @keyframes css{
    0%{
      width: 0%;
    }
    100%{
      width: 70%;
    }
  }
  
  @keyframes python{
    0%{
      width: 0%;
    }
    100%{
      width: 70%;
    }
  }

@keyframes javaScript{
    0%{
      width: 0%;
    }
    100%{
      width: 40%;
    }
  }

  #github {
    color: white;
    text-decoration: none;
    size: 40px;
  }

  #githubI{
    margin: auto;
    padding: auto;
  }
  

  #icons{
    text-align: center; 
    
  }




#cotactMe{
  height: 100%;
  min-height: 46vh;
}}


