html {
  box-sizing: border-box;
}
*, *:after, *:before {
  box-sizing: inherit;
}
html, body {
  height: 100%;
  margin: 0;
}
body {
	background-image: url("bg.jpg");
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
}
header {
  height: 120px;
  width: 100%;
  position: fixed;
  text-align: center;
  padding-top: 20px;
  z-index: -1;
}
main {
	margin: 0 auto;
	min-height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 900px;
	justify-content: center;
	padding-top: 150px;
}
.banner img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.content {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
}
.c-video {
  position: relative;
}
.c-video:before {
  display: block;
  content: "";
  padding-bottom: 56.25%;
}
.c-video iframe {
	width: 100%;
	position: absolute;
	height: 100%;
	left: 0;
	top: 0;
	box-shadow: 0 0 30px 5px #df0294;
}
.c-entry-buttons {
	display: flex;
	justify-content: space-around;
	margin-top: 56px;
	flex-wrap: wrap;
}
.c-entry-button {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	margin: 0 24px 24px 24px;
	min-width: 200px;
}
.c-entry-button img {
	width: 200px;
	object-fit: contain;
	margin-bottom: 10px;
  }
.c-entry-button__label {
	height: 56px;
	background-color: green;
	padding: 0 16px;
	color: white;
	font-weight: bold;
	font-size: 20px;
	text-align: center;
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	max-width: 90%;
	font-family: Arial, Helvetica;
}
.c-entry-button--red .c-entry-button__label {
	background-color: red;
}
.c-entry-button--green:hover, .c-entry-button--red:hover {
	transform: scale(1.04);
	transition: all 0.3s ease-in-out;
}