/*
2019-03-19 
author: Bethuel Heldt
*/
html,
body,
body * {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	background: url(../images/ij01.jpg) no-repeat center center;
	background-position: center center, -100vw center, 100vw center, 100vw center, 100vw center;
	background-size: cover;
	background-attachment: fixed;
	font-size: 18px;
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: center;
	min-height: 100vh;
}

body,
p,
h1,
h2 {
	font-family: Verdana, sans-serif;

}

h1 {
	font-family: 'Major Mono Display', monospace;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.50);
	background-color: rgba(0, 0, 0, 0.50);
	color: #FFF;
	font-size: 2em;
	line-height: 3em;
	margin: 0 auto;
	padding: 0 2em;
	width: 100vw;
}

footer {
	position: relative;
	width: 100vw;
	padding: 0 2em;
	line-height: 1.5em;
	background-color: rgba(0, 0, 0, 0.50);
	color: #FFF;

}

.container {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
	align-items: center;
	align-content: center;
}

a {
	font-size: 1.2em;
	line-height: 2em;
	padding: 0 2em;
	color: white;
	background-color: black;
	text-decoration: none;
	flex: 0 1 25vw;
	text-align: center;
	text-align: center;
	margin: 1em;
	transition: transform 0.2s, background-color 0.2s, color 0.2s;
}

a:hover,
a.selected {
    box-shadow: -4px 4px 0 #e41fc3, -8px 8px 0 #cc20b0, -12px 12px 0 #bb36a5, -16px 16px 0 #843e79, -18px 18px 0 #382d36;
    transform: translate(18px, -18px);
    background-color: #ff00d4;
    color: #ffd2f7;
}
