:root {
  --backcolor: #2550c5;
  --textcolor: #dddddd;
}

body {
  background: var(--backcolor) !important;
  color: var(--textcolor) !important;
  font-family: Roboto;
  margin: 0;
  padding: 0;
  height: 100%;
  font-weight: 500;
  font-size:medium;
}

body:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  position: fixed;
  background: linear-gradient(45deg, #3e7192 0%, #342d96 100%);
}

::selection {
  background-color: rgb(95, 97, 99);
}
.text-dec-none {
    font-weight:600;
    text-decoration: none;
    transition: color .4s, text-decoration .4s;
    color: #77fff1;
}
.text-dec-none:hover {
    text-decoration: none;
    color: rgb(92, 206, 241)
}
.center-text {
  position: relative;
  text-align: center;
}
.center-div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
::-webkit-scrollbar {
      width: 3px; 
} 
  ::-webkit-scrollbar-track {
      background: #000000;
  }
  
  ::-webkit-scrollbar-thumb {
      background: #888;
      border-radius: 2px; 
  }
  
  ::-webkit-scrollbar-thumb:hover {
      background: #666;
  }
  
  ::-webkit-scrollbar-horizontal {
      height: 10px; 
  }
  
  ::-webkit-scrollbar-thumb:horizontal {
      background: #888; 
  }