* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	color: #333;
	overflow: hidden;
}

.v-header {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.container {
	max-width: 960px;
	padding: 0rem 1rem;
	margin: auto;
	text-align: center;
}

.fullscreen-video-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.fullscreen-video-wrap video {
	min-width: 100%;
	min-height: 100%;
}

.header-overlay {
	height: 100vh;
	width: 100vw;
	position: absolute;
	top: 0;
	left: 0;
	/* background: #225470; */
	z-index: 1;
	opacity: 0.65;
}

.header-content {
	z-index: 2;
}

.header-content h1 {
	font-size: 50px;
	margin-bottom: 0;
}

.logo {
	width: 100%;
	max-width: 360px;
	margin-bottom: 3rem;
}

#div-message {
	font-size: 2.5rem;
	border: 1px black solid;
	background-color: rgba(255, 255, 255, 0.7);
	font-weight: bold;
	padding: 1rem;
	line-height: 5rem;
}

#div-message a {
	font-weight: normal;
	color: rgba(252, 27, 26, 1);
	text-decoration: none;
	transition: color ease-in-out 0.5s;
}

#div-message a:hover {
	color: rgba(132, 0, 0, 1);
}

.header-content p {
	font-size: 1.5rem;
	display: block;
	padding-bottom: 2rem;
}

@media (max-width: 960px) {
	.container {
		padding: 0rem 3rem;
	}

	#div-message {
		font-size: 1.5rem;
		line-height: 2.5rem;
	}
}
