html, body {margin: 0; height: 100%; overflow: hidden}

body {
	font-family: "Lexend", sans-serif;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url('../images/background-image.jpg');
    /*background: linear-gradient(to bottom, rgb(6,46,20) 0%, rgb(9,109,46) 100%);*/
	color: white;
}

.content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30%;
	background-color: #111;
	border-style: solid;
	border-color: #ffffff;
	padding: 60px 40px 60px;
	text-align: center;
	border-radius: 8px;
	/* box-shadow: 0 30px 30px #000; */
}

.panel a {
	colour: #fff;
}

h1 {
	margin-top: 0px;
	font-weight: 600;
	color: #ffb400;
}

p {
	margin-bottom: 30px;
	font-size: 18px;
}
p span {
	font-style: italic;
	text-decoration: underline;
}

a {
	color: #dbdbdb;
	text-decoration: none;
}
a:hover {
	color: #ffb400;
}

.cta {
	color: #866842;
	text-decoration: none;
	background-color: #29c563;
	border: 2px 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;
	animation: pulse 1.5s infinite ease-in-out;
}
.cta:hover {
	color: #fff;;
}

.show-mobile {
	display: none;
}

@keyframes pulse {
    0% {
      transform: scale(1);
    }
  
    50% {
      transform: scale(1.04);
    }
  
    100% {
      transform: scale(1);
    }
  }


@media screen and (max-width: 1000px) { 

	.content {
		width: 70%;
	}

}

@media screen and (max-width: 768px) {

	body {
		background-image: url('../images/background-image-mobile.jpg');
	}
	
	.content {
		width: 70%;
		padding: 30px 15px;
	}
	
	h1 {
		font-size: 24px;
		line-height: 28px;
	}
	
	p {
		font-size: 16px;
	}
 
	.cta {
		width: 80%;
	}

}

@media screen and (max-width: 500px) { 

	p {
		font-size: 14px;
	}

	/* p br {
		display: none;
	} */

	.show-mobile {
		display: block;;
	}

}

