body {
	margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 790px;
    min-height: 100vh;
    font-size: 14px;
    line-height: 1.5em;
    font-family: "Arial",sans-serif;
    background: lightgrey; 
}

p {
	display: block;
}

.header {
	margin: 0px auto;
	padding:0px;
	background-color: #000000;
	font-family: "Verdana", sans-serif;
	width:100%;
}

.menu {
	padding: 0px;
	display: flex;
    flex: 10 1 auto;
    justify-content: center;
    margin-bottom: 0px;
}

.menu .menu-point {
	margin: 0px 20px;
	padding: 20px;
	font-size: 16px;
	text-decoration: none;
	color: white;
	display: inline-block;
}

.menu .menu-point:hover {
	transition-duration: 0.5s;
	background: rgb(35, 35, 35);
	color: #F7CA51;
}

.contents {
	width: 80%;
	margin: 50px auto;
	padding: 50px;
	font-family: "Verdana", sans-serif;
	box-shadow: 0 0 20px black;
	background: white;
}

.headline {
	font-size: 36px;
	margin-bottom: 70px;
	text-align: center;
}

.headline-contents {
	margin: 35px;
	text-align: center;
}

.list {
	list-style-type: none;
}

.list-item {
	font-size: 16px;
}

.list-item-link {
	margin: 0px;
	padding: 15px 0px 15px 60px;
	text-decoration: none;
	color: black;
	display: block;
}

.list-item-link:hover {
	transition-duration: 0.5s;
	background: rgb(35, 35, 35);
	color: #F7CA51;
}

.page-footer {
	font-family: verdana,sans-serif;
	margin: 0;
	padding: 50px;
	max-width: 100%;
	height: 100%;
	background: dimgray;
}

.footer-content {
	max-width: 980px;
	margin: 0px auto 0px;
	color: lightgrey;
}

.footer-info {
	margin-right: 70px;
	width: 60%;
	float: left;
}

.footer-info p {
	margin-bottom: 30px;
}

.footer-nav {
	margin: 0;
	float:left;
}

.footer-list-nav {
	list-style-type: none;
	padding: 7px;
}

.footer-link {
	color: lightgrey;
	
}

.footer-link:hover {
	text-decoration: none;
	color: rgb(218, 165, 32);
	font-style: italic;
	font-weight: bold;
}

.footer-content:after {
	clear: left;
}