/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background: linear-gradient(#AA2D2D, #131313);
  color: black;
  font-family: Verdana;
}

html {
height:100%;
}

#leftmenu {
margin:15px;
}

#maincontent {
margin:15px;
}

#rightmenu {
margin:15px;
}

      ::-webkit-scrollbar {
width: 10px; /** width of total scrollbar **/
background: #fff; /** background of scrollbar **/
border: 1px solid #000; /** border around whole scrollbar **/
}

::-webkit-scrollbar-thumb {
background: #9C0606; /** color of the moving part of the scrollbar (thumb) **/
border: 1px solid #000; /** border around moving part of scrollbar (overlaps with border of total scrollbar) **/
}

::selection {
  background: #FAB5B5; /* WebKit/Blink Browsers */
  color: #fff;
}
::-moz-selection {
  background: #FAB5B5; /* Gecko Browsers */
  color: #fff;
}