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

html, body {
  background-color: white;
  background-image: url("https://sadhost.neocities.org/images/tiles/stars4.gif");
  color: white;
  font-family: "DepartureMono";
  height: 100%;
}
/* coding for main box okay yaya*/
 .mainbody {
   margin: auto;
   border: 1px solid #fff;
   width: 510px;
   height: 470px;
   overflow: scroll;
   background: #2F2E38;
   display: block;
   justify-content: center;
   align-items: center;
   box-shadow: 0px 0px 20px 5px #fff;
   position: absolute;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   overflow-x:hidden;
   border-radius: 150px;
   padding: 20px;
}
::-webkit-scrollbar {
   width: 8px;
}

::-webkit-scrollbar-track {
   background-color: transparent;
   -webkit-border-radius: 3px;
   border-radius: 10px;
   border: 1px solid transparent;
}

::-webkit-scrollbar-thumb {
   -webkit-border-radius: 2px;
   border-radius: 5px;
   background: solid transparent;
   border: 1px solid transparent;
}
@font-face {                  
font-family: 'DepartureMono';
src: url(https://humantooth.neocities.org/fonts/DepartureMono.woff) format('woff');
font-weight: normal;
font-style: normal;
} 
a:link {
   color: #eddfdf;
}

a:visited {
   color: #bd0d13;
}