* {
	margin: 0;
	padding: 0;
}

html, body {
	height: 100%;
	background-color: #f0f0f0;
}

#container {
	min-height: 100%; 
}

#main {
	overflow: auto;
	padding-bottom: 60px;
}

#TitelDiv {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #0bb300;
	border-bottom: 3px solid black;
	width: 100%;
}

#CenterDiv {
	text-align: center;
}

#FooterDiv {
	position: relative;
	height: 60px;
	margin-top: -60px;
	padding-top: 10px;
	padding-bottom: 5px;
	background-color: #0bb300;
	border-top: 3px solid black;
	width: 100%;
	clear: both;
}

.underline {
	position: relative;
	border-bottom: 2px solid currentColor;
 	display: inline-block;
  	line-height: 1.2;
}

.ImgCenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

#ImgWrap {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-areas:
	"left right middle";
	grid-gap: 10px;
}

.left {
	grid-area: left;
}

.middle {
	grid-area: middle;
}

.right {
	grid-area: right;
}

a.nav-link:link
{
   color: black;
   text-decoration: none;
}
a.nav-link:visited
{
   color: black;
   text-decoration: none;
}
a.nav-link:hover
{
   color: black;
   text-decoration: none;
}
a.nav-link:active
{
   color: black;
   text-decoration: none;
}


.Rubik {
	font-family: 'Rubik', sans-serif;
}

.Noto {
	font-family: 'Noto Sans TC', sans-serif;
}

.Manjari {
	font-family: 'Manjari', sans-serif;
}

.Bree {
	font-family: 'Bree Serif', serif;
}