@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
	font-family: 'Lora', serif;
  color: black;
	
}
#top_title{
    text-align: center;
    font-size: 40px;
	margin: 5rem 0rem 2rem 0rem;
    text-shadow: 2px 2px 3px grey;
}

#sub_title {
	text-align: center;
    font-size: 20px;
	margin-bottom: 5rem;
	font-weight: 700;
}


#text-container {
	max-width: 900px;
	margin: 0 auto 5rem auto;
	align-content: center;
}


.list-container {
	max-width: 100%;
	color: black;
	column-count: 1;
	padding: 1rem 0 0 3rem;;
	}

.list-title {
	max-width: 100%;
	font-size: 20px;
	font-weight: 700;
	text-align: left;
	margin: 1rem auto 0rem;
	padding-top: 2rem;
	padding-left: 2rem;
	color: black;
}

.list-container ul li {
	padding-bottom: 0.5rem;
	list-style-type: circle;
	list-style-position: inside;
/*	margin-left: 15%;*/
	max-width: 900px;
	
		
}

.detail{
	margin-left: 2rem;
}


.list-container a {
/*	color: black;*/
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
}
.list-container a:hover {
	text-decoration: underline;
	
}


