/* sections = The collection of list titles at the top */
/* List = The table used to show each list when one list name is clicked */

#sections {
	width: 90%;
	margin: auto;
	box-shadow: inset 0 0 12px rgba(0,0,0,0.5);
	border: 1px solid #777777;
	border-radius: 24px;
	background-color: #0088FF44;
	text-align: center;
}

#sections span {
	display: inline-block;
	width: 18%;
	box-shadow: inset 0 0 12px rgba(0,0,0,0.5);
	border: 1px solid #777777;
	border-radius: 24px;
	background-color: #FFFFFF66;
	padding-top: 10px;
	margin: 4px;
	font-size: 25px;
	height: 38px;
}

#sections span:hover {
	background-color: #FFFFFF99;
}

#section_container {
	width: 100%;
	height: 300px;
	margin-bottom: 100px;
}

.section_box {
    width: 90%;
    margin: 10px auto;
    box-shadow: inset 0 0 12px rgba(0,0,0,0.5);
	border: 1px solid #FFAF56;
	border-radius: 24px;
	background-color: #EEE;
    font-size: 20px;
    padding: 10px;
    line-height: 25px;
    font-family: 'roboto', sans-serif;
}

.section_box > p {
    text-align: center;
    font-size: 20px;
    margin: 20px 0 10px 0;
    padding: 0 50px;
    line-height: 30px;
    font-family: 'roboto', sans-serif;
}

.quote {
    font-family: 'courgette', sans-serif;
    font-size: 25px;
    text-align: left;
    padding: 10px 20px 10px 20px;
    width: 70%;
    margin: 0 0 30px 12%;
    box-shadow: inset 0 0 12px rgba(0,0,0,0.5);
	border: 1px solid #FFAF56;
	border-radius: 24px;
	background-color: #EEE;
    line-height: 30px;
}

.name {
    font-size: 25px;
    line-height: 25px;
    font-family: 'arctic', sans-serif;
    box-shadow: inset 0 0 7px rgba(0,0,0,0.4);
	border: 1px solid #777777;
    background-color: #0055AA66;
	border-radius: 24px;
    padding: 20px 0 0 15px;
    margin: 0 0 5px 10%;
    color: white;
    width: 20%
}

.name:first-child {
    margin-top: 50px;
}