body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}
body.dark-mode{
    background-color: rgb(7, 2, 19);
    color: white;
}
.dark-mode p{
    color: white;
}
.dark-mode button{
    background-color: white;
    color: #656d72;
}
.dark-mode a{
    color: white;
    background-color:  rgb(7, 2, 19);
}
.dark-mode h1{
    color: white;
}
.dark-mode .section-e{
    background-color:  rgb(7, 2, 19);
    border-top: 1px solid gray ;
    
}
.dark-mode div{
    color:  rgb(7, 2, 19);
}

.dark-mode .btn{
    display: none;
}
.dark-mode .lit{
    display: block;
    background-color:  rgb(7, 2, 19);
}
.dark-mode .btn-1{
    background-color:  rgb(7, 2, 19);
    color: white;
}
.dark-mode ul{
    color: white;
}
.dark-mode .cv{
    background-color:  rgb(7, 2, 19);
    color: white;
}
.dark-mode .box{
    background-color: rgb(17, 3, 44);
}
.dark-mode .copy{
    color: white;
}
::-webkit-scrollbar-track{
    background-color: white;
}
::-webkit-scrollbar-thumb{
    background-color: #7e74f1;
    border-radius: 10px;
}
::-webkit-scrollbar{
    background-color: #7e74f1;
    border-radius: 10px;
}

.dark-mode .tp{
    background-color:rgb(7, 2, 19) ;
}
.dark-mode .mod{
    background-color:rgb(7, 2, 19) ;
}



.typewriter .txt{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .10em solid orange; /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing:0 ; 
    animation: 
      typing 3.5s steps(30, end),
      blink-caret .5s step-end infinite;

  }
  
  /* The typing effect */
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  
  /* The typewriter cursor effect */
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: orange }
  }


























*{
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.opencont{
animation: fadeIn 0.8s;
}
.closecont{
    animation: fadeIn 0.8s;
}
.cont{
    animation: fadeIn 1s;
}
@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}