html{
  height: 100%;
  scroll-behavior: smooth;

}




h1{
  color: rgb(255, 255, 255);
}

p{
  color: rgb(255, 255, 255);
}

body{
  height: 100%;
  cursor: crosshair;
  margin: 0;
  padding: 0;
  background-color: rgb(20, 20, 20);
  font-family: 'Questrial','sans-serif';
  color: white;
  list-style-type: none;
  align-items: center;
  
}

#preloader{
background: #000 url('assets/preloader.webp') no-repeat center center;
background-size: 5%;
min-height: 100vh;
width: 100%;
z-index: 100; 
align-items: center;
justify-content: center;
position: fixed;
display: flex;
animation: loader 5s;
visibility: hidden;
}

#preloader p{

  margin-top: 10%;
  
}

@media only screen and (max-width:480px){
  #preloader{
    background-size: 10%;
  }
}

@media only screen and (max-width: 480px){
  #preloader p{
    margin-top: 20%;
    font-size: 10px;
  }
}
  


#blinking-dots{
  
  animation: dots steps(4) 1s infinite;
}

@keyframes dots {
 from{
    opacity: 100%;
  }

  to{
   opacity: 0%;
    
  }
  
}

@keyframes loader {
  0%{
    visibility: hidden;
  }
  100%{
    visibility: visible;
  }
}





.container{
 margin: auto;
 background-color: rgb(0, 0, 0);
}

.firstpage{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: rgb(39, 39, 39);
  }

.box{
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  display: flex;
  padding-top: 1%;
  width: 100%;
  justify-content: center; 
  background-color: rgba(52, 52, 52, 0.8);
  z-index: 1;
  box-shadow: 0 40px 40px rgba(40, 40, 40, 0.5);
  transition:  0.8s;
}


.navbar{
  position: relative;
  width: 100%;
  margin-left: 33%;
  margin-right: 33%;
  border-bottom: rgb(143, 143, 143) solid 1px;
  padding: 0% 2%;
  padding-bottom: 0.25%;
  display: flex;
  justify-content: space-around;
  align-items: center;
    
}

.navbar a{
  text-align: center;
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.navbar a[id="heading"]{
  color: rgb(255, 255, 255);  
  font-family: 'Raleway';
  font-weight: bolder;
  font-size: 28px;
  
}

.navbar a[id="about"]{
  color: rgb(255, 184, 29);
}

.navbar a:hover{
  color: #9c9c9c;
  border-bottom: 2px rgba(0, 0, 0, 0.3) solid;  
  animation: lh 0.7s ease-in;
}

.navbar a[id="about"]:hover{
  cursor: url('cursor/1x/crosswhi.png') 16.5 16.5, auto;
  color: #5dccff;
  border-bottom: 2px rgba(0, 0, 0, 0.3) solid;
  animation: ah 0.7s ease-in;
}

.navbar a[id="heading"]:hover{
  cursor: url('cursor/1x/crosswhi.png') 16.5 16.5, auto;
  border-bottom: 2px rgb(19,19,19) solid;
  animation: hd 0.7s ease-in;
  
}  

@media only screen and (max-width: 1200.96px) {
  .navbar{
    border-bottom: 1px rgba(255, 255, 255, 0) solid;
    margin-left: 25%;
    margin-right: 25%;
  }
}

@media only screen and (max-width: 767.96px) {
  .navbar{
    border-bottom: 1px rgba(255, 255, 255, 0) solid;
    margin-left: 20%;
    margin-right: 20%;
  }
}



@media only screen and (max-width: 575.96px) {
  .navbar{
    border-bottom: none;
    margin-left: 10%;
    margin-right: 10%;
  }
}


@media only screen and (max-width: 767.96px) {
  a, p{
    font-size: 13px;
    line-height: 1.2rem;
  }
}

@media only screen and (max-width: 575.96px) {
  a,p{
    font-size: 12px;
    line-height: 1.2rem;
  }

}@media only screen and (max-width: 767.96px) {
  #heading{
    font-size: 18px;
    line-height: 1.2rem;
  }
}

@media only screen and (max-width: 575.96px) {
  #heading{
    font-size: 15px;
    line-height: 1.2rem;
  }
}


@keyframes hd{
  0%{
    border-bottom: 2px rgba(0, 0, 0,0) solid;
  }

  100%{
    border-bottom: 2px rgb(19, 19, 19) solid;
  }
}

@keyframes lh{
  0%{
    border-bottom: 2px rgba(0, 0, 0, 0) solid;  
  }

  100%{
    border-bottom: 2px rgba(0, 0, 0, 0.3) solid;  
  }
}

@keyframes ah{
  0%{
    border-bottom: 2px rgba(0, 0, 0, 0) solid;
  }

  100%{
    border-bottom: 2px rgba(0, 0, 0, 0.3) solid;
  }
}
.intro{
  display: flex;
  justify-content: space-around;
  margin-left: 3%;
  margin-right: 3%;
}

@media only screen and (max-width: 767.96px) {
  .intro, .firstpage{
    min-height: 0vh;
  }
}

@media only screen and (min-width: 1000.96px) {
  .intro img{
    width: 400px;
    
  }
}


@media only screen and (min-height: 1080px) {
  .intro, .firstpage{
    min-height: 0vh;
  }
}


.intro img{
  width: 600px;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.pfpimg{
  position: relative;
  display: flex;
 justify-self: flex-end;
}

@media only screen and (max-width: 1000.96px) {
  .intro{
  
   align-self: center;
   justify-self: center;
   min-height: 100vh;
    
  }
}

@media only screen and (max-width: 767.96px){
  .intro{
    min-height: 0vh;
  }
}


@media only screen and (max-width: 1000.96px) {
  .intro img{
    width: 400px;
    
  }
}



@media only screen and (max-width: 767.96px) {
  .intro img{
    width: 300px;
    line-height: 25px;
    animation:  3s ease-in;
  }
}

@media only screen and (max-width: 575.96px) {
  .intro img {
    width: 150px;
    line-height: 1.2rem;
  }
}


.introtextbox{
  display: flex;
  flex-direction: column;
  align-items: start;
  align-self: center;
  position: relative;
  
}

#hire{
  font-size: 20px;
  margin-bottom: 5px;
  padding: 2% 5%;
  border: 2px solid rgb(255, 184, 29);
  border-radius: 5%;
  border-bottom-right-radius: 30%;
  color: rgb(255, 184, 29);  
}

#hire:hover{
  color: rgb(255, 166, 0);
  cursor: url('cursor/1x/crosswhi.png') 16.5 16.5, auto;
  background-color: rgb(67, 65, 60);
}

.tanimation{
  display: flex;
  text-align: center;
  justify-content: center;
}

#iam  {
  margin-inline: auto;
  overflow: hidden;
  white-space: nowrap;
  border-right: 1px solid;
  margin-top: 0;
  margin-bottom: 0;
  animation: typing 1.5s steps(17) forwards;
  animation-delay: 5s;

}


@keyframes typing{
  from{
    width: 0;
    
  }
  to{
    width: 100%;
  }
  99%{
    border-right: 1px solid;
  }
  100%{
    border-right: 0px;
  }
}

#cs{
  margin-inline: auto;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
  animation: typing2 4s steps(26) forwards, blink 1s 4s step-end infinite;
  animation-delay: 5s;
}

@keyframes typing2{
  0%{
    width: 0;
    border-right: 0px;
  }
  40%{
    width: 0;
    
  }
  
  80%{
    border-right: 1px solid;
  }

  100%{
    width: 100%;
    border-right: 1px solid;

  }
}

@keyframes blink{
  
  50%{
    border-color: transparent;
  }
}

.intro h1{
  font-size: 60px;
  color: orange;
}

.intro h2{
  color: rgb(0, 0, 0);
}

.intro p{
  font-size: 30px;
}

@media only screen and (max-width: 767.96px) {
  .intro h1{
    font-size: 30px;
  }
}

@media only screen and (max-width: 575.96px) {
  .intro h1 {
    font-size: 15px;
    line-height: 1.2rem;
  }
}

@media only screen and (max-width: 767.96px) {
  .intro p{
    font-size: 15px;
  }
}


@media only screen and (max-width: 575.96px) {
  .intro p {
    font-size: 10px;
    line-height: 1.2rem;
  }
}

@media only screen and (max-width: 767.96px) {
  .intro{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media only screen and (max-width: 767.96px) {
  .introtextbox{
    justify-self: center;
    align-self: center;  
    align-items: center;
  }
}

.projects{
  border-top: rgb(143, 143, 143) solid 1px;
  margin-left: 3%;
  margin-right: 3%;

}

#Projects{
  text-align: center;

 
}

.items{
  display: flex;
  justify-content: space-between;
  
}

.items ol{
  display: flex;
  flex-direction: column;
  
}

.items li{
  padding: 5px;
}


.proimg img{
  opacity: 0%;
  width: 200px;
  transition: 0.9s ease-in;
  align-items: center;
}

#flappyimg, #calcimg{
  display: none;
}

.items p:hover{
  cursor: url('cursor/1x/crosswhi.png') 16.5 16.5, auto;
  color: rgb(131, 131, 131);
 
  
}

.digart{
  border-top: rgb(143, 143, 143) solid 1px;
  margin-left: 3%;
  margin-right: 3%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#digart{
  text-align: center;
}

.digart p{
  font-size: 15px;
}

.digart p:hover, .dig:hover, .logo:hover, .social:hover{
  color: rgb(216, 216, 216);
  cursor: url('cursor/1x/crosswhi.png') 16.5 16.5, auto;
}

.digart .blurred{
  filter: blur(3px);  
}

img{
  transition: filter 0.9s ease-in-out;
  transition: opacity 0.7s ease;
}

.digart .overlay{
 
  opacity: 50%;
}
/* 
#text-view{
  flex-direction: row;
  margin-right: 5%;
  display: none;
  position:absolute;

  margin: 0;
  align-items: center;
  justify-content: center;
} */


.digimg img{
  width: 100%;
}

.logoimg img{
  width: 33%;
}

.socialimg img{
  width: 25%;
  
}

#Shoppile-cart-dash{
  width: 40%;
  height: 66.67%;
  margin-top: 5%;

}

#banner{
  width:99.5%;
}
#channel-art-1,#channel-art-2{
  width: 49.75%;
  
}

#thumbnail-1,#thumbnail-2,#thumbnail-3{
  width: 33%;
}

#mun-1,#mun-2{
  width: 29.5%;
  height: 85.42%;
}

#certificate{
 
  width: 40%;
}

.tags{
  display: flex;
  justify-content: center;
  width: 100%;
  
}

.tags p{
  margin-top: 4px;
  
}

@media only screen and (max-width: 767.96px){
  .tags p{
    font-size: 12px;
  }
}

@media only screen and (max-width: 575.96px){
  .tags p{
    font-size: 10px;
  }
}


#digimg{
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 80%;
  padding-right: 0;
}

 ::-webkit-scrollbar {
  width: 5px;
  
}

::-webkit-scrollbar-track {
  background: rgb(129, 129, 129);
  border-radius: 20px;

}

::-webkit-scrollbar-thumb {
  background-color: rgb(66, 66, 66);
  border-radius: 20px;
}

#logoimg{
  display: none;
  flex-direction: column;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 80%;
  max-height: 80vh;
}

#socialimg{
  flex-direction: column;
  display: none;
  width: 80%;  
  max-height: 90vh;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

#dig{
  border-top: 1px solid white;
}

#logo{
  border-top: 0px solid white;
}

#social{
  border-top: 0px solid white ;
}

.row1, .row2, .row3, .row4, .row5{
  display: flex;
  justify-content: center;
  margin-bottom: 0.25%;
}

@media only screen and (max-width: 480px) {
  #digimg,#logoimg, #socialimg, .digart{
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-right: 0px;
    margin-left: 0;
}
}

@media only screen and (max-width: 1000px) {
  #logoimg{
    height: auto;
    overflow: hidden;
  
}
}

@media only screen and (max-width: 870px) {
  #socialimg{
    height: auto;
    overflow-y: hidden;
}
}

@media only screen and (max-width: 480px) {
  #digimg img{
   width: 100%;
}
}

.mid{
  margin: 0 0.25%;
}

.logo{
  margin: 0 2%;
}
@media only screen and (max-width: 575.96px){
  .logo{
    margin: 0 3%;
  }
}

.skills{
    border-top: rgb(143, 143, 143) solid 1px;
    margin-left: 3%;
    margin-right: 3%;
}

.skills p{
  font-size: 15px;
}

#skills{
  text-align: center;
}

.skilllist{
  display: flex;
  justify-content: center;
  margin-bottom: 2%;
}

.skilllist2{
  display: flex;
  justify-content: center;
  margin-bottom: 2%;
}

.skills img{
  width: 30px;
  object-fit: contain;
  
}

.apimg{
  width: 35px;
  margin-right: 5px;
}

.AP{
  align-items: center;
  width: 20%;
  display: flex;
  border: 1px solid rgb(70, 175, 255);
  background-color: rgb(46, 52, 62);
  border-radius: 4%;
  padding: 0 1%;  
 
}



.AP p{
  font-weight: bold;
  color: rgb(235, 235, 235);
  padding: 5% 0;
  padding-right: 15%;

}

.AP:hover  img{
  width: 35px;
  transition: 0.2s ease-in-out;
}

.AI{
  
  margin-left: 2%;
  margin-right: 2%;
  width: 20%;
  display: flex;
  border: 1px solid rgb(70, 175, 255);
  background-color: rgb(46, 52, 62);
  border-radius: 4%;
  padding: 0 1%;
  align-items: center;
}

.AI p{
  font-weight: bold;
  color: rgb(235, 235, 235);
  padding: 5% 0;

}

.AI:hover  img{
  width: 35px;
  transition: 0.2s ease-in-out;
}


.APR{
   
  width: 20%;
  align-items: center;
  display: flex;
  border: 1px solid rgb(70, 175, 255);
  background-color: rgb(46, 52, 62);
  border-radius: 4%;
  padding: 0 1%;
  
}

.APR p{
  font-weight: bold;
  color: rgb(235, 235, 235);
  padding: 5% 0;

}

.APR:hover  img{
  width: 35px;
  transition: 0.2s ease-in-out;
}

.html{
  
  width: 20%;
  align-items: center;
  display: flex;
  border: 1px solid rgb(70, 175, 255);
  background-color: rgb(46, 52, 62);
  border-radius: 4%;
  padding: 0 1%;
  
}

.html p{
  padding: 5% 0;
  font-weight: bold;
  color: rgb(235, 235, 235);
}

.html:hover  img{
  width: 35px;
  transition: 0.2s ease-in-out;
}


.css{
  margin-left: 2%;
  margin-right: 2%;
  width: 20%;
  align-items: center;
  display: flex;
  border: 1px solid rgb(70, 175, 255);
  background-color: rgb(46, 52, 62);
  border-radius: 4%;
  padding: 0 1%;
  
}

.css p{
  font-weight: bold;
  color: rgb(235, 235, 235);
  padding: 5% 0;

}

.css:hover  img{
  width: 35px;
  transition: 0.2s ease-in-out;
}

.js{
  
  width: 20%;
  align-items: center;
  display: flex;
  border: 1px solid rgb(70, 175, 255);
  background-color: rgb(46, 52, 62);
  border-radius: 4%;
  padding: 0 1%;
  
}

.js p{
  font-weight: bold;
  color: rgb(235, 235, 235);
  padding: 5% 0;

}

.js:hover  img{
  width: 35px;
  transition: 0.2s ease-in-out;
}

@media only screen and (max-width: 767.96px) {
  .skills p{
    font-size: 12px;
  }
}

@media only screen and (max-width: 575.96px) {
  .skills p {
    font-size: 10px;
    line-height: 1.2rem;
  }
}

@media only screen and (max-width: 767.96px) {
  .skills img {
    width: 25px;
  }
}

@media only screen and (max-width: 767.96px) {
  .css:hover img, .js:hover img, .html:hover img, .APR:hover img, .AI:hover img, .AP:hover img  {
    width: 30px;
  }
}

@media only screen and (max-width: 575.96px) {
  .skills img, .css:hover img, .js:hover img, .html:hover img, .APR:hover img, .AI:hover img, .AP:hover img  {
    width: 20px;
  }
}

@media only screen and (max-width: 575.96px) {
   .css:hover img, .js:hover img, .html:hover img, .APR:hover img, .AI:hover img, .AP:hover img  {
    width: 25px;
  }
}

@media only screen and (max-width: 900px) {
  .skilllist, .skilllist2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 900px) {
  .AP, .AI, .APR, .html, .css, .js{
    width: 40%;
    margin-bottom: 2%;
  }
}

@media only screen and (max-width: 767.96px) {
  .apimg{
    width: 30px;
    margin-right: 1px;
  }
}

@media only screen and (max-width: 575.96px) {
  .apimg{
    width: 25px;
    margin-right: 3px;
  }
}

.footer{
  border-top: rgb(143, 143, 143) solid 1px;
  margin-left: 3%;
  margin-right: 3%;
  display: flex;
  align-items: center;
  min-height: 10%;
  max-height: 10%;
}

.footer h1{
  margin-left: 2%;
}

.footer a{
  
  
  text-decoration: none;  
  color: rgb(255, 255, 255);
}

.handles{
  display: flex;
}

.handles li{
  
  margin-left: 20%;
  border-right: #cacaca solid 1px;
  padding-right: 10%;
}

#email{
  margin-left: 300%;
}

.footer a:hover{
  color: #9c9c9c;
  
}

@media only screen and (max-width: 767.96px) {
  h1{
    font-size: 18px;
    line-height: 1.2rem;
  }
}

@media only screen and (max-width: 575.96px) {
  h1{
    font-size: 15px;
    line-height: 1.2rem;
  }
}

@media only screen and (max-width: 767.96px) {
  h2{
    font-size: 18px;
    line-height: 1.2rem;
  }
}

@media only screen and (max-width: 575.96px) {
  h2{
    font-size: 10px;
    line-height: 1.2rem;
  }
}


a:hover{
  cursor: url('cursor/1x/crosswhi.png') 16.5 16.5, auto;
}



.img-container{
  position: relative;
  display: inline-block;
  width: 33%  ;
}

.text-view {
  pointer-events: none;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  justify-content: center;
  align-items: center;
  
  padding: 10px;
  border-radius: 5px;
  color: white;
  z-index: 0;
}

.text-view img{
  width: 20px;
}