body {
	background-image: url(bg.png);
	background-repeat: repeat;
	background-size: auto;
	text-align: center;
	font-family: "Comic Sans MS, Comic Sans", cursive, sans-serif;
}
h1 {
	color: blue;
}
p { 
	color: red;
}
a {
  color: MidnightBlue;
}
img {
  margin: 100px;
}
.scroll-box {
  height: 150px; /* Set a fixed height */
  width: 300px;  /* Set a fixed width */
  border: 1px solid black;
  overflow-y: auto; /* Add vertical scrollbar only when needed */
}