@import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&family=Mohave:wght@700&family=Nothing+You+Could+Do&display=swap');

:root {
	--primary-red: #70000e;
	--lato-font-family: 'Lato', sans-serif;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	max-width: 100vw;
	overflow-x: hidden;
}

.video_container {
	width: 100vw;
	height: 100vh;
	max-height: 100vh;
	position: relative;
	overflow: hidden;
	background-color: #000;
}

.video_container video {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  pointer-events: none;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 7rem;
	z-index: 25;
	color: darkgrey;
	padding: 0 3%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: 'Helvetica', normal;
}

.header.transparent {
	background: transparent;
}
