/* 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-image: url('/backgroundneo.png');
  background-size: 900px;
  color: white;
  font-family: Comic Sans MS;
  border: 2px dotted;
  h1, h2, p, li{
    text-shadow: -5px 5px 2.5px black;
    text-align: center;
    border: 2px dotted  white;
    border-radius: 10px;
    margin-right: 350px;
    margin-left: 350px;
    scale: 1.5;
  }
  
  li{
    height: 50px;
    margin-right: 400px;
    margin-left: 400px;
  }
  
  img {
   display: block;
   margin: auto;
   border: 10px outset white;
   border-radius: 10px;
  }
  
  .sidebar {
    border: dotted white;
  }