html, body {
    background: darkcyan;
	margin: 0;
}
.heading {
	color: white;
	font-family: 'OCR A Std', sans-serif;
	display: flex;
	flex-direction: column;
	text-align: right;
	border-bottom-style: double;
	border-bottom-color: white;
	border-width: 10px;
	background: linear-gradient( to right, darkcyan, black );
}
.heading h1{
	margin: 0;
	font-size: 50px;
}
.heading h3 {
    margin: 0; 
}
.home-icon {
	position: absolute;
	top: 10px;
	left: 10px;
	font-size: 35px;
	text-decoration: none;
}
.home-icon a{
	color: white;
}
.home-icon a:hover{
	color: bisque;
}
#fallback-link {
	display: none;
}
.pdf {
    width: 100%;
	height: 100vh;
}
.pdf p {
    color: white;
    font-family: 'OCR A Std', sans-serif;
    font-size: 25px;
	text-align: center;
}
.pdf a{
	color: bisque;
}
.pdf iframe {
    width: 100%;
    height: 100%;
    border: none;
}