*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
    
}


.navbar li a{
  color: white;
}
.navbar li a:hover{
  color: #9932cc;
}

.navbar-collapse {
  position: absolute;
  top: 56px;
  left: 0;
  z-index: 9999;
  width: 100%;
  background-color: #343a40;
}

@media (min-width: 992px) {
  .navbar-collapse {
      position: unset;
      top: unset;
      left: unset;
      z-index: unset;
      width: unset;
      background-color: unset;
  }
}


.card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
  border-color: #9932cc;
  transition: ease-in-out all 0.2s;
}


.first-section{

    background-color: #000;
}

.second{
    background-color: #000;
}

@media screen and (max-width: 768px) {
  .col-sm-12 {
    width: 100%;
    max-width: 100%;
  }
}


.typing-text::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  border-right: 2px solid #fff;
  animation: typing 2s steps(30, end) forwards;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}



.social-icon:hover {
  opacity: 1;
  background-color: purple;
  border-radius: 50%;

}


