html, body {margin: 0; height: 100%; overflow: hidden}

body {
	postition: relative;
	background-image: url('../images/background.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-color: black;
	font-family: Arial, Helvetica, sans-serif;
	color: white;
	background-position: center;
}

.panel {
	
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
    background: #29434b;
    border-radius: 10px;
    margin-top: 0;
    padding: 50px 20px 30px 20px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    color: white;
    border: solid 2px #ffd428;
    box-shadow: 0 0 25px 10px rgba(141, 131, 72, 1);
    width: 500px;
    box-sizing: border-box;
    overflow: visible;
}

.panel img {
	display: block;
	position: absolute;
	top: -140px;
	left: 50%;
	transform: translateX(-50%);
}

.panel > span {
	font-size: 24px;
	font-weight: 800;
	position: absolute;
	right: 10px;
	top: 5px;
	color: #fff;
	font-family: sans-serif;
}

.panel a {
	color: #fff;
}

.panel h1 {
	margin-top: 0px;
}

.panel p {
	margin: 0px 0px 21.44px 0px;
	font-size: 24px;
	line-height: 32px;
	color: #fff;
	font-weight: 600;
	text-shadow: 1px 2px 3px black;
}

.CTA {
	background-image: linear-gradient(180deg, rgba(253,241,167,1) 0%, rgba(191,147,32,1) 60%, rgba(252,208,92,1) 100%);
    border: 4px solid rgba(253, 224, 137, 1);
	padding: 15px 10px;
	border-radius: 5px;
	margin: 0px 0px 21.44px 0px;
	width: 60%;
	font-size: 22px;
	animation: pulse 1s infinite ease-in-out;
	
}

@keyframes pulse {
    0% {
      transform: scale(1);
    }
  
    50% {
      transform: scale(1.08);
    }
  
    100% {
      transform: scale(1);
    }
}

strong {
	color: white;
	text-decoration: none !important;
	padding: 15px 0 0 0;
	text-shadow: 0px 2px 0px #000, 1.9px -0.7px 0px #000, -1.3px -1.6px 0px #000, -1.1px 1.7px 0px #000, 2px 0.4px 0px #000, -0.2px -2px 0px #000, -1.8px 0.9px 0px #000, 1.4px 1.4px 0px #000, 0.8px -1.8px 0px #000, -2px -0.2px 0px #000, 0.5px 1.9px 0px #000, 1.7px -1.1px 0px #000;
}

a {
  text-decoration: none;
}

.ont-footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: #111;
	padding: 30px 0;
}

.ont-footer > div {
	margin: 0 auto;
	width: 800px;
}

.ont-footer > div p {
	text-align: center;
}

.ont-footer > div > span {
	color: #fff;
	font-size: 18px;
	line-height: 1.4;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Roboto", sans-serif;
	margin-bottom: 30px;
  }
  .ont-footer > div > span img {
	max-width: 200px;
  }
  
  .ont-footer span i {
	padding: 0 20px;
	font-style: normal;
  }
  
  .ont-footer .ont-footer__ont {
	font-size: 16px;
	color: #888;
	line-height: 1.4;
  }
  .ont-footer .ont-footer__ont a {
	display: inline;
	color: #fff;
  }


@media screen and (max-width: 1000px) { 

	.ont-footer > div {
		width: 95%;
	}

}

@media screen and (max-width: 768px) {
	.panel {
		width: 400px;
	}
	
	body {
		background-image: url('../images/background-mobile.jpg');
		background-color: black;
	}
	
	.panel h1 {
		font-size: 24px;
	}
	
/*	.panel p {
		font-size: 12px;
	}*/

	/*.panel br {
		display: none;
	}*/
	
}

@media screen and (max-width: 600px) {

	.panel {
		width: 90%;
		box-sizing: border-box;
	}
	.panel p {
		font-size: 18px;
    line-height: 24px;
	}
	.cta {
		width: 90%;
	}

}

@media screen and (max-width: 500px) {

	.panel {
		top: 42%;
	}
	.ont-footer > div > span img {
		max-width: 90px;
	}
	.ont-footer > div > span {
		font-size: 14px;
		margin-bottom: 10px;
	}
	.ont-footer .ont-footer__ont {
		font-size: 12px;
	}

}