/* 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 {
  font-family: "Myfont-Regular";
  font-size: 25px;
  text-align: center;
  color: #FFFFFF;
  background: #000000 url("https://mahnwelluh.neocities.org/images/kms-bg.png"); 
	background-size: cover;
	background-attachment: fixed;
  background-position:center;
	padding:10px;
	margin:30px 50px 50px 30px;
  }
  
  #demobox {
  color: white ;
  background-color: #6f0000;
  border: 4px black ;
  text-align: center;
  display: inline-block;
	padding: 15px;
}

#aboutmebox {
  color: white ;
  background-color: #000000 ;
  border: 4px black ;
  text-align: center;
	width: 500px;
  display: inline-block;
  padding: 15px;
}



