@font-face {
    font-family: "entsans";
    src: url("../../enter-sansman/entsans.ttf");
}

body {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	font-family: "Helvetica", sans-serif;
	margin: 0px;
	width: 100vw;
	height: 100vh;
}

.navBar {
	display: flex;
	flex-direction: flex-end;
	align-items: center;
	background-color: #c7ffec;
	overflow: hidden;
}

.navBar a {
	float: left;
	font-size: 16px;
	color: black;
	text-align: center;
	padding: 14px 10px;
	text-decoration: none;
}

.dropdown {
	float: left;
	overflow: hidden;
}

.dropdown .dropBtn {
	font-size: 16px;
	border: none;
	outline: none;
	color: black;
	padding: 14px 10px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
	cursor: pointer;
}

.navBar a:hover, .dropdown:hover, .dropbtn {
	background-color: #69ffcb;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #c7ffec;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 2;
}

.dropdown-content a {
	float: none;
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.dropdown-content a:hover {
  background-color: #69ffcb;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.title {
	margin-right: auto;
	font-family: "entsans";
	font-size: 25px;
	padding: 4.5px 0 4.5px 15px;
	color: #00665f
}

.main {
	display: grid;
	background-image: url("../../uploads/bajaBlast.png");
	background-position: center;
	max-width: 100%;
	margin: 0;
	height: 710px;
	grid-template-areas: 
	"buttons pdf pdf pdf pdf pdf pdf .";
}

.pdf {
	grid-area: pdf;
	margin: 0 auto auto auto;
	width: 80%;
	height: 95%;
	z-index: 1;
}

.buttonsContainer {
	grid-area: buttons;
	display: flex;
	flex-direction: column;
	max-width: 300px;
}

button {
	background-color: #00665f;
	border: solid 2px;
	border-radius: 5px;
	padding: 8px;
	margin: 5px;
	color: white;
}

button:hover {
	background-color: #c7ffec;
	color: black;
}

.copyright {
	position: absolute;
	bottom: 0%;
	width: 100%;
	text-align: center;
	color: white;
	font-size: 10px;
}

.support {
	font-size: 16px;
	border: none;
	border-radius: 0;
	outline: none;
	color: black;
	padding: 14px 16px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
	float: left;
}

.support:hover {
	background-color: #69ffcb;
}