html, body {margin: 0; height: 100%; overflow: hidden}



body {
	font-family: "Poppins", sans-serif;
	position: relative;
	background-image: url('../images/background-image.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-color: black;
	color: white;
}

.container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 25%;
	background-color: #040305;
	border-style: solid;
	border-color: #866842;
	padding: 40px;
	text-align: center;
	box-shadow: 0 30px 30px #000;
}

.panel a {
	colour: #fff;
}

h1 {
	margin-top: 0px;
	font-weight: 800;
}

p {
	margin-bottom: 30px;
	font-size: 16px;
}

a {
	color: #866842;
	text-decoration: none;
}

button {
	background-color: #3dc687;
	border: 1px solid #fff;
	color: #fff;
	padding:  12px 18px;
	border-radius: 5px;
	width: 50%;
	display: block;
	margin: 0 auto 30px;
	text-transform: uppercase;
	font-size: 24px;
	font-weight: 800;
	text-shadow: 0px 1px 2px #000;
}

@media screen and (max-width: 768px) {

	body {
		background-image: url('../images/background-image-mobile.jpg');
		background-color: black;
	}

	.container {
		width: 70%;
		padding: 30px 15px;
	}
	
	h1 {
		font-size: 24px;
		line-height: 28px;
	}
	
	p {
		font-size: 12px;
	}
 
	button {
		width: 90%;
	}

	
}

