*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* background-image: #e6e9f0; */
    background: rgba(255,255,255,0.15);
}
html{
    scroll-behavior: smooth;
}
.fa-facebook-official{
    color: #3b5998;
}
.fa-linkedin{
    color: 	#0077b5;
}
.fa-github{
    color: #00405d;
}
.card{
    border-radius: 20px;
    box-shadow: rgb(117, 116, 116) 1px 1px 1px;
}
h1{
    color: blue;
}

a:hover{
    
    transition: 1s;
    color: red;
}
.card {
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08), 0 0 6px rgba(0, 0, 0, 0.05);
    transition: 0.3s transform cubic-bezier(0.155, 1.105, 0.295, 1.12),
      0.3s box-shadow,
      0.3s -webkit-transform cubic-bezier(0.155, 1.105, 0.295, 1.12);
    /* padding: 14px 80px 18px 36px; */
    cursor: pointer;
  }
  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
  }
  .input-group-text{
    color: #fff!important;
    background: darkblue!important;
    border-radius: 0 100px 100px 0!important;
    min-width: 120px;
    min-height: 36px;
}
#loading{
    background: #fff url('../img/829.gif') no-repeat center center; 
    position: sticky;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 9999999;
  }