h4{
    margin-top: 1px;
    font-size: 10px;
    text-align: center;
    margin-left: 30px;
  
   
    
}

h4:hover {
    -ms-transform: scale(1.5); /* IE 9 */
    -webkit-transform: scale(1.5); /* Safari 3-8 */
    transform: scale(1.5); 
   text-shadow: 2px 1px  rgb(129, 99, 250);
   box-shadow:  0 4px 8px 0 rgba(236, 5, 5, 0.2), 0 6px 20px 0 rgba(17, 17, 17, 0.19);
   opacity: 0.5;
  }
 
   h4{
    box-sizing: border-box;
    box-shadow:  0 4px 8px 0 rgba(1, 7, 1, 0), 0 6px 20px 0 rgba(12, 12, 12, 0.89);
    width: 120px;
    text-align: center;
   }
   h4 {
    font-size: 10vw; /* make our h1 tag larger */
    font-family: sans-serif; /* choosing our font */
    background: linear-gradient(to right, rgba(105, 93, 214, 0) 0%, rgba(225, 255, 255, 0.5) 20%, rgba(115, 110, 194, 0) 61%), linear-gradient(rgb(97, 183, 217) 52%, rgb(224, 246, 255) 60%, rgb(78, 99, 132) 61%); /* you can change the colors based on your preference */
    background-clip: text; /*it defines how far the background should extend within an element, here we set it to text */
    -webkit-background-clip: text; /*for browsers compatibility */
    -webkit-text-fill-color: transparent; /* specifies the fill color of text characters. We use transparent to use the background as our text fill  */
    animation: wave 2000ms ease alternate infinite;
    transition: all 0.4s ease;
  
  }
  @keyframes wave {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 50vw 10px;
    }
  }
  
  body {
   
    background-color: rgb(32, 26, 26);
    color: black;
    font-size: 25px;
  }
  
  .dark-mode {
    background-color:#1d2a35 !important;;
    color: #ddd !important;
  }
  .dark-mode .logo {
    background-color:#1d2a35 !important;;
    color: #ddd !important;
    
  }
  .dark-mode .panel-body {
    background: rgb(12, 23, 34);
    color: #ddd !important;
    letter-spacing:1px;
  }
  .dark-mode .sidebar-left {
    background: rgb(15, 23, 31);
    box-shadow: -5px 0 0 #2b2b2b inset;
    color: #ccc;
    display: table-cell;
    position: relative;
    vertical-align: top;
    width: 300px;
    z-index: 1010;
    padding-top: 3px;
}
.dark-mode div.panel-body {
  box-sizing: border-box;
  border-color: black;
  box-shadow: 0 4px 8px 0 rgba(170, 168, 168, 0.2), 0 6px 20px 0 rgba(12, 12, 12, 0.19);
}

.dark-mode .panel-heading {
  background-color: #222e46;
  box-sizing: border-box;
  border-top: 1px;
  
  box-shadow: .9px 5px 5px 2px rgba(99, 98, 98, 0.2), 0 6px 20px 0 rgba(12, 12, 12, 0.19);
}
.dark-mode img{
  /* box-sizing: border-box; */
  box-sizing: border-box;
  border-color: rgb(43, 5, 5);
  box-shadow: .3px 4px 6px 2px rgba(204, 204, 218, 0.2), 0 6px 20px 0 hsla(0, 0%, 5%, 0.188);
}
.dmbutton{
  text-align:center;
  text-decoration: none;
  padding: 10px 25px;
  display: inline-block;
  color: #111213;
  text-emphasis-color: rgb(4, 7, 19);
  transition: background-color 0.3s ease;
  width: auto;
  box-sizing: border-box;
  margin-top: -53px;
  margin-right: 15px;
}
.dark-mode .header {
  background-color: #151320;
  box-shadow:  0 0 15px #93929e;
  z-index: 1000;
  padding: 20px 0;
}
button i {
  margin-right: 2px;
  color: rgb(21, 101, 172);
  
}
button{
  background-color: #111213;
  color: antiquewhite;
  margin-top: 40px;
}

@media (max-width:100%) {
  .dmbutton {
    padding: 0.4em 1.2em;
    font-size: 0.9rem;
  }
}

@media (max-width: 708px) {
  .dmbutton {
    padding: 0.3em 1em;
    font-size: 0.85rem;
    align-content: flex-end;
    
  }
}
@media (max-width: 708px) {
  .dmbutton {
    padding: 0.3em 1em;
    font-size: 0.85rem;
    
  }
}
@media (max-width: 739px) {
  .dmbutton {
    padding: 0.3em 0.8em;
    font-size: 0.8rem;
    width: 100%; 
    margin-left: 325px;
  }
}

#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
   background: linear-gradient(270deg, #3030ff, #000000);
   animation: gradientBackground 3s ease infinite;
}
.img-logo{
  align-items: center;
  width: 2000px;
  height: inherit;
  margin-left: 470px;
  padding-top: 150px;
  background-repeat: no-repeat;
  /* background-color: none; */
}
.loader {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    border-radius: 60px;
    animation: loader 0.7s linear infinite;
    -webkit-animation: loader 0.3s linear infinite;
}


@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        border: 4px solid #eb1203;
        border-left-color: transparent;
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        border: 4px solid #dbdf0d;
        border-left-color: transparent;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        border: 4px solid #3812dd;
        border-left-color: transparent;
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        border: 4px solid #3643f4;
        border-left-color: transparent;
    }
    50% {
        -webkit-transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent;
    }
    100% {
        -webkit-transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
}
.container .img{
  width:100%;
  padding: auto;
  margin-right: 10px;
}
.panel-body{
  text-decoration-style: solid black;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(73, 74, 77, 0.336); 
  border-radius: 0px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(transparent, #0b54c2e0);
  border-radius: 2px;
  height: 66.5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(transparent, #30ff00);
}

.copyright{
  margin-left: 45px;
}
.header .logo {
  float: left;
  margin: -23px 0 0 px;
  margin-top: 10px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 31px;
  padding-inline-start: 8px;
  padding-top: -28px;
  width: 80%;

}