html, body {margin: 0; height: 100%; overflow: hidden}

body {
	postition: relative;
	background-image: url('../images/background.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-color: black;
	font-family: Arial, Helvetica, sans-serif;
	color: white;
	background-position: center;
}
.allA{
	width: 100vw;
	height: 100vh;
	/*background: white;*/
	position: fixed;
	z-index: 1000;
}
.panel {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	background-color: #f5f5f5;
	/*border-style: solid;
	border-color: #d3c96c;*/
	padding: 40px 20px;
	border-radius: 20px;
	box-shadow: 0px 5px 15px #000;
}

.panel a {
	color: #111;
}

.panel h1 {
	margin-top: 0px;
}

.panel p {
	margin: 0px 0px 21.44px 0px;
	font-size: 24px;
	line-height: 32px;
	color: #333;
	font-weight: 600;
}

.CTA {
	background-color: #df7a72;
	padding: 15px 10px;
	border-radius: 5px;
	margin: 0px 0px 21.44px 0px;
	width: 60%;
	font-size: 22px;
}

strong {
	color: #ffffff;
	text-decoration: none !important;
	padding: 15px 0 0 0;
}

a {
  
  text-decoration: none;
}


@media screen and (max-width: 768px) {
	.panel {
		width: 400px;
	}
	
	body {
		/*background-image: url('../images/background.png');*/
		background-color: black;
	}
	
	.panel h1 {
		font-size: 24px;
	}
	
/*	.panel p {
		font-size: 12px;
	}*/

	/*.panel br {
		display: none;
	}*/
	
}

@media screen and (max-width: 600px) {
	body{
		background-image: url("../images/bg_mob.jpg");
	}
	.panel {
		width: 90%;
		box-sizing: border-box;
	}
	.panel p {
		font-size: 18px;
    line-height: 24px;
	}
	.cta {
		width: 90%;
	}

}