body { /* Disable text selection */
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select:   none; /* Safari */
	-khtml-user-select:    none; /* Konqueror HTML */
	-moz-user-select:      none; /* Firefox */
	-ms-user-select:       none; /* Internet Explorer/Edge */
	user-select:           none; /* Non-prefixed version, currently supported by Chrome and Opera */
}

html {
	background: url('bgfill.jpg') repeat-y top center;
	background-size: cover;
	overflow: hidden;
}

body {
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url('boot.png') no-repeat bottom center;
	background-size: cover;
}

p {
	text-decoration: none;
	color: rgb(0,0,0);
	font-family: 'Times New Roman', serif;
	font-size: 16pt;
	text-align: center;
	line-height: 1.5;
}

b {
	font-weight: bold;
}

div {
	border:  0px solid black;
}

img {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

#house {
	max-width: 50%;
	position: relative;
	left: 25vw;
	right: 25vw;
	margin-top: 2vw;
}

#links {
	max-width: 100%;
	margin-top: 100px;
	padding-bottom: 5px;
}

#footer {
	background-color: transparent;
	position: fixed;
	bottom: 0;
	width: 100%;
}

#footertext {
	margin-bottom: 10px;
	margin-top:  10px;
}

@media only screen and (max-width: 1081px) {
	body {
		background-size: contain;
	}
}

@media only screen and (orientation: landscape) {
	body {
		background-size: cover;
	}
}