@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@600;700&display=swap');

h1, h2{
  color: #455a64;
}

hr {
  background-color: #455a64;
}

html{
   scroll-behavior: smooth;
}

.sidebar-container {
   position: fixed;
   width: 220px;
   height: 100%;
   left: 0;
   overflow-x: hidden;
   overflow-y: auto;
   background: #1a1a1a;
   color: #fff;
 }
 
 .content-container {
   padding-top: 20px;
 }
 
 .sidebar-logo {
   padding: 10px 15px 10px 30px;
   font-size: 20px;
   background-color:#3362cc;
 }
 
 .sidebar-navigation {
   padding: 0;
   margin: 0;
   list-style-type: none;
   position: relative;
 }
 
 .sidebar-navigation li {
   background-color: transparent;
   position: relative;
   display: inline-block;
   width: 100%;
   line-height: 20px;
 }
 
 .sidebar-navigation li a {
   padding: 10px 15px 10px 30px;
   display: block;
   color: #fff;
 }
 
 .sidebar-navigation li .fa {
   margin-right: 10px;
 }
 
 .sidebar-navigation li a:active,
 .sidebar-navigation li a:hover,
 .sidebar-navigation li a:focus {
   text-decoration: none;
   outline: none;
 }
 
 .sidebar-navigation li::before {
   background-color: #3362cc;
   position: absolute;
   content: '';
   height: 100%;
   left: 0;
   top: 0;
   -webkit-transition: width 0.2s ease-in;
   transition: width 0.2s ease-in;
   width: 3px;
   z-index: -1;
 }
 
 .sidebar-navigation li:hover::before {
   width: 100%;
 }
 
 .sidebar-navigation .header {
   font-size: 12px;
   text-transform: uppercase;
   background-color: #151515;
   padding: 10px 15px 10px 30px;
 }
 
 .sidebar-navigation .header::before {
   background-color: transparent;
 }
 
 .content-container {
   padding-left: 220px;
 }

 #style-1::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #000;
}

#style-1::-webkit-scrollbar
{
	width: 8px;
	background-color: #000;
}

#style-1::-webkit-scrollbar-thumb
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}

#style-2::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #fff;
}

#style-2::-webkit-scrollbar
{
	width: 10px;
	background-color: #fff;
}

#style-2::-webkit-scrollbar-thumb
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #2574A9;
}

pre{
   background-color: #f1f1f1;
   color: #000;
}

.card {
  border: 0;
  background-color: #455a64;
  color: #8fb5c7;
  font-family: 'Josefin Sans', sans-serif;
}

.card:hover{
  background-color: #407bff;
  color: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
}

a{
  cursor: pointer;
}

.fourth {
  border-color: #407bff;
  color: #407bff;
  background-image: -webkit-linear-gradient(45deg, #407bff 50%, transparent 50%);
  background-image: linear-gradient(45deg, #407bff 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  -webkit-transition: background 400ms ease-in-out;
  transition: background 400ms ease-in-out;
}
.fourth:hover {
  background-position: 0;
  color: #fff;
}




