html{
    background-color: black;
}
a{
  color: white;
  text-decoration: none;
}
/* bannervid/text */
#bannervid-container {
    position: relative;
  }
#banner-vid{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#banner-title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 5rem;
    text-align: center;
    font-family: f;
}
/* footer */  
.section {
    height: 100vh;
    position: relative;
  }
  
  .about-me {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px;
    position: relative;
  }
  
  .profile-picture {
    margin-top: 20px;
  }
  
  .profile-picture img {
    width: 200px;
    height: auto;
  }
  
  #aboutmetext {
    font-size: 4rem;
    margin-bottom: 20px;
  }
  #projectstext {
    font-size: 4rem;
    margin-bottom: 20px;
  }
  #section_title{
    font-size: 4rem;
    margin-bottom: 20px;
  }
  
    .skills-aboutme , .education {
        display: flex;
        flex-direction: column;
    }
    .projects{
        color: black;
        padding: 40px;
        margin-top: 20px;
    }
    #projects-vid{
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 25%;
     object-fit: cover;
     z-index: -1;
    }
    .project-container{
      position: relative;
      height: 100vh;
      overflow: hidden;
    }
    .section-content {
      height: 100%;
      display: flex;
      flex-direction: column;
      font-size: 1.5rem;
      font-family: 'Courier New', Courier, monospace;
      flex: 1;
      position: relative;
      color: white;
    }
    .project-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* navigation bar */
    nav{
        position: fixed;
        top: 5%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        z-index: 1;
        justify-content: center;
    }
    nav ul{
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
    }
    nav li{
        margin: 0 175px;
    }
    nav a{
        color: white;
        text-decoration: none;
        size: 1.2rem;
        font-weight: bold;
        font-family: 'Courier New', Courier, monospace;
    }
    nav a:hover{
        color: blue;
        text-decoration: underline;
    }
    .navbar-black a {
      color: black;
    }
    .project p {
      font-weight: bold;
    }
    .project-image {
      max-width: 400px;
      margin-top: 20px;
      position: relative;
    }
  .project {
    flex: 0 0 calc(33.33% - 20px);
    margin-top: 20px;
    position: relative;
  }
  .project-image img {
    width: 100%;
    height: auto;
  }
  .project-title {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.8); 
    padding: 5px 10px; 
    font-weight: bold;
    font-size: 16px;
    z-index: 1;
  }
  /* scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: black ;
}

::-webkit-scrollbar-thumb {
   background-color: white;
   border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: lightgray;
}

::-webkit-scrollbar-thumb:hover {
  background: lightgrey  ;
}

footer {
  background-color: white;
  color: black;
  padding: 40px 0;
}
.contact{
  font-family: 'Courier New', Courier, monospace;
}
.footer-socials {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-socials a {
  margin: 0 10px;
  font-size: 24px;
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color:blue;
}
.row-social {
  text-align: center;
  margin-bottom: 20px;
}
.row-social ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.row-social li {
  display: inline-block;
  margin: 0 10px;
}
.row-social a {
  color: black;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.row-social a:hover {
  color: #007bff;
}

.row-copyright {
  text-align: center;
  font-size: 12px;
}
.skills_name {
  font-size: 18px;
  margin-right: 10px;
}

.skills_number {
  font-size: 16px;
  width: 50px;
}

.skills_bar {
  position: relative;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.skills_progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: blue;
  border-radius: 5px;
}

.skills_percent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
}
.skills_content.skills_open .skills_list { 
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 15px;
}

.skills_content.skills_close .skills_list { 
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 15px;
}

.skills {
  background-color: black;
  color: white;
  padding: 40px;
  margin-top: 20px;
  font-family: 'Courier New', Courier, monospace;
}

.blog-window {
  position: absolute;
  top: 60%;
  right: 40px;
  transform: translateY(-50%);
  width: 300px;
  height: 500px;
  background-color: black;
  border: 1px solid #ccc;
  padding: 10px;
  overflow-y: scroll;
}
.blog-content {
  margin-top: 40px;
}
