/* 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-color: DarkSlateBlue;
  background-image: url("stars.png");
  color: white;
  font: 16px "Comic Mono";
}

.maincontainer {
	background-color: plum;
	color: color-mix(in hsl, midnightblue 33%, purple 67%);
	border-image: url("border.png") 60 / 60px;
	border-image-outset: 30px;
	padding: 60px;
	margin-top: 120px;
	margin-bottom: 120px;
}

b {
	font-weight: 900;
	color: color-mix(in hsl, midnightblue 67%, purple 33%);
}