@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Lora', serif;
  color: black;
	padding: 0 5%;

}
#title{
    text-align: center;
    font-size: 40px;
    text-shadow: 2px 2px 3px grey;
	margin: 5rem 0rem;
}

.main-wrapper {
	max-width: 600px;
	margin:  0 auto 200px auto;
	
}


.main-wrapper ul li {
	list-style-position: inside;
	max-width: 1000px;
	margin: 0 auto;
	padding: 5px;
}

.main-wrapper a {
	text-decoration: none;
}

.main-wrapper a:hover {
	text-decoration: underline;
}

.main-page a {
	font-weight: 800;
	font-size: 18px;
	text-transform: uppercase;
}

.sub-page {
	text-indent: 30px;
	font-size: 16px;
	font-weight: 600;
}


.under-sub-page {
	text-indent: 60px;
	list-style-type: none;
	font-size: 14px;
}

