/* 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." */

::-webkit-scrollbar {/* page scroll */
    width: 10px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Track (background of the scrollbar) */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #ff6b6b; /* Color of the scrollbar */
    border-radius: 10px;
} 

::-webkit-scrollbar-thumb:hover {
    background: #ff4d4d; /* Scrollbar color when hovered */
}
body {
  background: #f0f0f0;
  font-family: Courier;
}
.Banner {
background-image: url('/background.jpg');
width: 200px;
height: 20px;
}
main {
background: none;
border: 0px gray solid;
margin-left: 180px;
margin-right: 180px;
}
main, header {
color: #1c1c1c;
text-align: center;
}
