* {
    padding: 0;
    margin: 0;
    font-family: Inter, sans-serif;
  }
  html{
      scroll-behavior: smooth;
  }
  /* width */
::-webkit-scrollbar {
    width: 8px;
    
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #fff; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #1186d4; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #0765A3; 
  }
  .main-container {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    /* position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; */
    overflow-y: scroll;
  }

  .main-container header {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.363);
  }
  .container {
    width: 600px;
    max-width: 100%;
    padding: 20px 10px;
    /* min-height: 90vh; */
    /* position: relative; */
  }
  .neo {
    color: rgb(7, 142, 231);
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
  }
  .project-list {
    padding: 30px 0;
  }
.project-box{
    margin-bottom: 20px;
}  
.project-name{
    font-size: 1.2rem;
    font-weight: 500;
}
.project-des{
    margin: 5px 0 10px 0;
}
.btn{
    max-width: 100%;
    margin-right: 10px;
    background: rgb(7, 142, 231);
    color: #fff;
    padding: 8px 16px;
    text-align: center;
    cursor: pointer;
    border: 0;
    border-radius: 5px;
    transition: 0.5s all;
}
.btn:hover{
    background-color: rgb(7, 101, 163);
}
.btn a{
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

@media(max-width: 767px){
  .container{
    padding: 10px 25px;
  }
}