
nav{
    box-shadow: 0px 1px 6px rgb(32 33 36 / 28%);
}
.navbar-div {
    width: 100%;
    display: flex;
    justify-content: center;
  
    padding: 10px;
    
}
.nav-logo-container{
    
    text-decoration: none;
    display: flex;
    font-size: 18px;
    align-items: center;
}
.nav-logo-container img {
    margin-right: 10px;
}
.introduction{
    margin: 10px;
    padding: 10px;
    box-shadow: 0px 1px 6px rgb(32 33 36 / 28%);
    border-radius: 10px;
    display: flex;
    justify-content: space-around; 
    align-items: center;
    flex-wrap: wrap;
}
.app-container{
    margin: 5px;
    padding: 10px;
    /* box-shadow: 0px 1px 6px rgb(32 33 36 / 28%); */

}
.app-screenshot-slide{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.introduction img{
    width: 400px;
    border-style: none;
    border-radius: 10px;
    
}
.introduction p{
  font-size: 24px;
    width: 400px;
  
   
}
#insta-downloader, #vac-converter{
    text-decoration: none;
}


.blinking-cursor {
    font-weight: 100;
    font-size: 30px;
    color: #2E3D48;
    -webkit-animation: 1s blink step-end infinite;
    -moz-animation: 1s blink step-end infinite;
    -ms-animation: 1s blink step-end infinite;
    -o-animation: 1s blink step-end infinite;
    animation: 1s blink step-end infinite;
  }
  
  @keyframes blink {
    from, to {
      color: transparent;
    }
    50% {
      color: black;
    }
  }
  
  @-moz-keyframes blink {
    from, to {
      color: transparent;
    }
    50% {
      color: black;
    }
  }
  
  @-webkit-keyframes blink {
    from, to {
      color: transparent;
    }
    50% {
      color: black;
    }
  }
  
  @-ms-keyframes blink {
    from, to {
      color: transparent;
    }
    50% {
      color: black;
    }
  }
  
  @-o-keyframes blink {
    from, to {
      color: transparent;
    }
    50% {
      color: black;
    }
  }