html {
	width:100%;
	height:100%;
}

article{
	font-family: 'Alegreya Sans SC', sans-serif;
	background-image: url("large_leather.png");
}

body{
	text-align:center;
	margin: 0px;
	height: 100%;
	overscroll-behavior: none;
}

header h1{
	font-size : 90px;
	padding: 0px;
	margin: 0px;
}

img{
	margin: 10px;
	padding: 5px;
}

/* unvisited link */
a:link {
	color: black;
	text-decoration: none;
}

/* visited link */
a:visited {
	color: black;
	text-decoration: none;
}

/* mouse over link */
a:hover {
	color:grey;
	text-decoration: none;
}

/* selected link */
a:active {
	color:black;
	text-decoration: none;
}

span {
	padding: 5px;
}

section{ 
	height: 100%;
	width: 100%;
	font-size: 25px;
}

.tooltip {
	position: relative;
	display: inline-block;
	border: 5px black;
}
	
.tooltip .tooltiptext {
	visibility: hidden;
	width: 150px;
	background: url("large_leather.png");
	color: black;
	text-align: center;
	border-radius: 5px;
	border: 4px solid black;
	padding: 5px ;
	
/* Position the tooltip */
	position: absolute;
	z-index: 1;
	top: 15px;
	left: 105%;
}
	
.tooltip:hover .tooltiptext {
	visibility: visible;
}

footer{
	text-align: left;
}
	


