

:root {
	--light-accent: #e4a868;
	--accent: #24289a;
	--big-accent: #24289a;
	--contrast-accent: rgb(206, 43, 193);
	--dark-accent: hsla(31, 100%, 49%, 0.406);
	--background: #222;
	--background-light: #444;
	--midground: #666;
	--midforeground: #999;
	--foreground: #000;
	--bright-foreground: #fff;


	--error: #ff4a4a;
	--success: #41c200;
	--flash: 255, 74, 74;

	--medium-font: 20px;
	--small-font: 15px;

	--minor-wrapper-width: 400px;
	--major-wrapper-width: 500px;

}

@media screen and (max-width: 580px) {
	
	:root {
		--medium-font: 4vw;
		--small-font: 3vw;
		--minor-wrapper-width: 69vw;
		--major-wrapper-width: 86vw;
	}
}


/* GENERAL STYLES */
html {
	width: 100%;
	height: 100%;
}
html, body {
	box-sizing: border-box;
	
}

* {
	box-sizing: inherit;
}

*:focus{ 
	outline: 2px solid black;
	outline-offset: 2px;
}

body {
	margin: 0px;
	width: 100%;
	height: 100%;
	background-color: #ccc;
	color: var(--foreground);
	font-family: "Special Elite";
	font-size: var(--medium-font);
	/* line-height: 125%; */
	background-image: url("images/white-concrete-wall.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

img.logo {
	width: 100%;
	height: auto;
	margin-bottom: 30px;
}

img.photo {
	width: 100%;
	height: auto;
	border-radius: 5px;
}

div.footer {
	position: absolute;
	padding: 2px;
	bottom: 0px;
	right: 0px;
	width: 100%;
}


div.trademarks {
	font-size: xx-small;
	float:left;
	/* line-height: 110%; */
	width: 45%;
}

div.attribution {
	font-size: xx-small;
	/* line-height: 110%; */
	text-align: right;
	float:right;
	width: 45%;
}

div.footer a {
	color: #aaa;
}

div.footer a:hover {
	background-color: #bbb;
	color: #777;
}


h1, h2, h3, h4, h5, h6 {
	color: rgb(0, 0, 0);
	font-weight: bold;
	margin-bottom: 2pt;
	margin-top: 2pt;
}

h1::first-letter {
	color: rgb(160, 24, 58);
}

.c {
	color: rgb(41, 41, 41);
}

h1 {
	text-transform: lowercase;
}


a { text-decoration: none; font-weight: bold; padding: 1px; color: var(--accent); }

a:hover { color: white; background-color: var(--contrast-accent); }

/* UTILITY */

.sr-only {
	position:absolute;
	left:-10000px;
	top:auto;
	width:1px;
	height:1px;
	overflow:hidden;
}

.no-hover {
	pointer-events: none;
}

.hide {
	visibility: hidden;
}

.test {
	background-color: fuchsia;
}


/* MAIN ELEMENTS */
div.outer {
	position: absolute;
	height: 100%;
	width: 100%;
	display: table;
}

div.middle {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

div.inner {
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	width: var(--major-wrapper-width);

	padding: 20px;
	border-radius: 20px;
	margin-top: 10px;
	background-color: #fff;


}

.popup {
	text-align: center;
	padding: 10px;
	padding-top: 12px;
	background: var(--accent);
	color: white;

}

.goback {
	text-align: left;
	
}

.address {
	text-align: center;
	opacity: 50%;
	font-size: var(--small-font);
	line-height: 130%;
}

