/* VARIABLES ========================================= */

:root {
  --baseFontSize: 3vmin;
}

@media only screen and (min-width: 600px) {
	:root {
		--baseFontSize: 2vmin;
	}
}

/* GENERAL ========================================= */

/* Zero default margin & padding around common elements */
article, blockquote, body, dd, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, header, li, menu, nav, ol, p, section, ul {
	margin: 0;
	border: 0 none #FFFFFF;
	padding: 0;
}

html {
	height: 100%;
	overflow: hidden;
}

body {
	height: 100%;
	overflow: auto;
	background-color: hsl(148,84%,42%);
	background-image:  linear-gradient(140deg, hsl(191,100%,43%), hsl(148,84%,42%), hsl(68,100%,43%));
	color: #ffffff;
	font-size: var(--baseFontSize);
	font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
	line-height: 1.4;
	text-align: center;
}

@media only screen and (min-width: var(--desktopWidth)) {
	body {
		font-size: 2vmin;
	}
}

a {
	color: #ffffff;
	text-decoration: underline;
}

a:visited {
	color: #ffffff;
}

a:hover {
	text-decoration: none;
}

img {
	border: 0 none transparent;
}

input, select, table, textarea {
	color: #000000;
	font-size: 100%;
	font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
}




/* CONTENT ========================================= */

#decorativeWedgie {
	position: fixed;
	left:  0;
	top:  0;
	width:  100%;
	height:  100%;
	background-image: url(../images/transparent_eagle.gif);
	background-repeat: no-repeat;
	background-size: 120vmin;
	background-position: 50% 60%;
	opacity: 10%;
}

#content {
	position:  absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	transform: translate(-50%,-50%);
}

h1 {
	width: calc(var(--baseFontSize) * 24);
	height: calc(var(--baseFontSize) * 6);
	margin: 0 auto;
	background-image:  url(../images/logo_wedgetail_horizontal.svg);
	background-size: contain;
	background-repeat:  no-repeat;
	background-position:  center center;
	filter: invert(100%);
	text-indent:  -1000vw;
}

h2 {
	margin: 1em auto 0 auto;
	padding: 0 2em;
	font-size: 140%;
	text-transform: uppercase;
	letter-spacing: 0.5em;
	font-weight: 400;
}

form {
	margin-top: 2em;
}

form p {
	margin-bottom: 0.5em;
	font-size: 120%;
	font-weight: 600;
}

form input {
	box-sizing: border-box;
	min-width: 15em;
	margin-right: 0.5em;
	border: 2px solid transparent;
	border-radius:  0.25em;
	padding: 0.5em;
	line-height: 1.5;
	outline: none;
}

form input:focus {
	border-color: #605CFF;
}

form button {
	box-sizing: border-box;
	border: 2px solid #605CFF;
	border-radius:  0.25em;
	padding: 0.5em;
	background-color: #605CFF;
	color: #ffffff;
	font-size:  100%;
	font-weight: bold;
	line-height: 1.5;
	cursor: pointer;
}

#extraLinks {
	position: absolute;
	left:  0;
	width:  100%;
	bottom: 2em;
}

#extraLinks li {
	display: inline-block;
	position: relative;
	margin: 0 3em;
}

#extraLinks a {
	display:  inline-block;
	position: relative;
	text-decoration: none;
}

#extraLinks a:hover {
	text-decoration: underline;
}

#extraLinks a:before {
	content: '';
	position: absolute;
	left: -34px;
	top: 50%;
	width:  24px;
	height:  24px;
	background-image: url('../images/icon_envelope.svg');
	background-position:  50% 50%;
	background-size: contain;
	background-repeat: no-repeat;
	transform: translateY(-50%);
	filter: invert(100%);
}

#extraLinks li:nth-child(2) a:before {
	background-image: url('../images/icons8-news.svg');
	left: -30px;
}

#extraLinks li:nth-child(3) a:before {
	background-image: url('../images/icons8-linkedin.svg');
	left: -30px;
}

@media only screen and (max-width: 600px) {
	#extraLinks li {
		margin: 1em 1.5em 0 2em;
		font-size:  100%;
		font-weight:  600;
	}

	#extraLinks a:before {
		left:  -22px !important;
		width:  18px;
		height: 18px;
	}
}