/* solo holding page */

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body {
	background-image: url('img/solo-major-guitar-lessons-brighton.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	font-family: "roboto", sans-serif;
	color: #fff;
	min-height: 100vh;
	/* height: 100vh; */
	min-width: 100vw;
	position: relative;
}

img {
	max-width: 100%;
	height: auto;
}

header { 
	background: rgba(0, 0, 0, 0.8);
	height: 150px;
	width: 100vw;
}

.inner {
	max-width: 80%;
	margin: 0 auto;
	display: block;
}

#logo {
	margin: 0 auto;
	height: 150px;
	width: 255px;
}

#caption {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 1.5em;
	text-align: center;
	text-shadow: 2px 2px rgba(0, 0, 0, 0.6);
	text-transform: uppercase;
	padding: 2em;
	background-color: rgba(0, 0, 0, 0.6);
}

#caption p {
	margin-bottom: 0.5em;
}

#caption p:last-child {
	margin-bottom: 0px;
}

#caption p:nth-child(even) {
	font-weight: 100;
}
#caption p:nth-child(odd) {
	font-weight: 700;
}

footer {	
	min-height: 100px;
	line-height: 100px;
	position: absolute;
	bottom: 0px;
	width: 100vw;
	background-color: rgba(0, 0, 0, 0.8);
	font-weight: 100;
	text-transform: uppercase;
}
footer span {
	font-weight: 700;
	margin-right: 1em;
}

footer a {
	color: #fff;
	text-decoration: none;
}

#footer-right {
	margin-top: 20px;
	float: right;
	height: 50px;
}

#footer-right img {
	width: 50px;
	height: auto;
	margin-left: 15px;
}

@media(max-width:800px) {
	body {
		font-size: 75%;
		min-height: calc(100vh - 100px);
	}
	footer {
		text-align: center;
		line-height: 1em;
		padding-top: 1em;
	}
	#footer-right {
		clear: both;
		float: none;
		position: relative;
		display: block;
		margin: 0 auto;
		margin: 1em 0;
	}
}