body {
	font-family: "Luxurious Roman", serif;
	font-size: 14px;
  font-weight: 400;
  font-style: normal;
	background: #8dd0fb url("https://i.imgur.com/agDjyjU.png");
	text-align: center;
	background-repeat: repeat;
	background-attachment: fixed;
  background-position:center;

}

li {
  text-align: left; /*You can change this, but centered lists can look kind of weird.*/
  margin-left: 20px
  }

h1 {
  text-align: center;
  font-size: 20px;
  letter-spacing:4px;
  }
h2 {
  text-align: center;
  font-size: 16px;
  letter-spacing: 4px;
  text-decoration: underline;
}
h3 {
  text-align: center;
  font-size: 18px;
  letter-spacing: 4px;
  text-decoration: underline;
}
footer {
  text-align: center;
  padding: 0px 0;
  color: white;
  font-size: 14px;
}
a {
  color: #552F75;
  text-decoration: underlined;
}
a:hover {
  color: #383C6B;
  font-style: italic;
}
.float-left {
  float: left;
  margin-right: 20px;
  margin-bottom: 15px;
}
.float-right {
  float: right;
  margin-left: 20px;
  margin-bottom: 15px;
}
div.scroll-container {
  background-color: #D2B48C;
  overflow: auto;
  white-space: nowrap;
  padding: 10px;
  border: 5px double black;
  scrollbar-width: thin;
  scrollbar-color: black;
}

div.scroll-container img {
  padding: 10px;
}
/*Use as the class of spans or divs you want to have normal left-aligned text.*/
/*You can combine classes by putting them together with a space, i.e. <div class="box left"> will be a div using "box" and "left" styles.*/
.left {
  text-align:left;
  }
.copyright {
margin-bottom: 5px;
}
/*A box that stays at a fixed height and scrolls when content gets too long.*/
.box {
  margin: 0 auto;
	overflow: auto;
	background-color: #D2B48C;
	border: 10px double #000;
	width: 32em;
	height: 24em;
	margin-top: 10.5%;
	padding: 3.5em 4em;
}

.box-round {
  margin: 0 auto;
	background-color: #D2B48C;
	border: 10px double #000;
	width: 32em;
	height: 24em;
	margin-top: 7.5%;
	overflow: auto;
	padding: 20px;
	padding-bottom: 30px;	
	border-radius: 50%;
	padding: 7.5em 6em;
}

/*A box that doesn't scroll, instead growing in height.*/
.box-noscroll {
  margin: 5% auto 4% auto;
	background-color: #D2B48C;
	border: 10px double #000;
	width: 32em;
	padding: 3.5em 4em;
}

/*Old box attributes. Use if you want an old-style box.*/
.old {
	margin-top: 3%;
	margin-bottom:3%;
	width: 460px;
	min-height:50px;
	padding: 20px;
	padding-bottom: 30px;	
  }
  
/*Prevent overflow of large images.*/
.box img, .box-noscroll img, .box-round img {
  max-width: 100%;
  height: auto;
  }


/*For narrow screens.*/
@media (max-width: 500px) {
  .box, .box-noscroll {
    width: 85%;
    }
  }
  
/*Mobile compatibility*/
@media (orientation: portrait) {
  .box, .box-noscroll {
    width: 85%;
    }
  }