/* General Styles */

* {
    margin: 0px;
    padding: 0px;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    max-width: 100vw;
    box-sizing: border-box;
  }
  
  body{
    background-color: black;
  }

  /*Hero link edits*/
  .sticky-bg {
    width: 100%;
    backdrop-filter: blur(20px);
   }


  .navbar-brand{
      font-size: larger;
      font-family: 'Courier New', monospace;
      color: white;
      transition: 0.5s;
      margin-left: 10px;
  }

  .navbar-brand:hover{
      color: lightskyblue;
      font-weight: 500;
  }
  
  .navbar-toggler{
    color: white;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); 
  }

  .nav-link{
    text-decoration: none;
    color: white;
    transition: 0.5s;
    font-family: 'Courier New', monospace;
    font-size: larger;
  }

  .nav-link:hover{
    color: lightskyblue;
    font-weight: 500;
  }

  .navbar-nav {
    display: flex;
    gap: 30px;
    padding: 1% 3%;
    list-style: none;
    padding-right: 20px;
  }


  
  /* Custom Scroll - I dont't think I want weird colours here?? Maybe add a plain one for compatability */
  /* width */
  ::-webkit-scrollbar{
      width: 10px;
      background-color: rgba(0,0,0,0);
  }
  /* Track for scroll bar */
  ::-webkit-scrollbar-track{
      background-color: black;
  }
  
  /*Handle*/
  ::-webkit-scrollbar-thumb{
      background: rgb(240,240,240);
      border-radius: 10px;
      width: 5px;
      height: 5px;
  }
  
  /* Handle on hover*/
  ::-webkit-scrollbar-thumb:hover{
      background: #686868;
  }
  
  
  /* Work Design */
  
    #work-with-me {
        min-height: 100vh;
        max-width: 100vw;
        background-color: black;
        min-height: 100vh;
    }
    
    .work-with-me-container{
        text-align: left;
        width: 80%;
        margin: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .work-row{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
  
    .reveal {
      opacity: 0;
      transform: translateY(150px);
      transition: 1s all ease;
    }
  
    .reveal.active{
      opacity: 1;
      transform: translateY(0)
    }
    
    #work-with-me p{
        margin-bottom: 16px;
        color: white;
    }
    
    .full-col{
        color: white;
        padding: 10px;
        flex-basis: 48%;
    }
    
    .full-col h2{
        color: white;
        margin-bottom: 10px;
    }

    .full-col h3{
        font-size: larger;
        font-family: 'Courier New', monospace;
        color: lightskyblue;
    }
    
    
    .skill-col{
        color: white;
        padding: 10px;
        flex-basis: 48%;
    }
    
    .skill-col h2{
        color: white;
        margin-bottom: 10px;
    }

    .skill-col h3{
        font-size: larger;
        font-family: 'Courier New', monospace;
        color: lightskyblue;
    }

    .nav-link-work:hover{
      color: lightskyblue;
      font-weight: 500;
    }

    .nav-link-work{
      text-decoration: none;
      color: white;
      transition: 0.5s;
    }
    
  @media (max-width: 700px){
      .work-with-me-container{
        padding-top: 1rem;
      }
      
      .work-row{
          flex-direction: column;
          justify-content: space-between;
          align-items: center;
          gap: 35px;
      }
  }
  
  
 

/*Footer Styling*/
.footer{
  margin: auto;
  padding-top: 2%;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: white;
  height: 10vh;
}

.copyright-footer p{
  text-decoration: none;
  color: white;
  justify-content: space-between;
  align-items: center;
  font-family: 'Courier New', monospace;
  font-size: larger;
}

.list-footer ul{
  display: flex;
  justify-content: space-between;
}


@media (max-width: 992px){
    #hero-section p{
        font-size: large;
    }
}
  
