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

body,
html {
	height: 100%;
	font-family: Arial, Helvetica, sans-serif;
	color: #fff;
}

/* Video layer */
#bgVideo {
	position: fixed;
	inset: 0;
	/* shorthand for top/right/bottom/left:0 */
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* fills screen, crops excess */
	object-position: center;
	/* keeps the center of the frame visible */
	z-index: -1;
	/* keeps aspect ratio */
}

section {
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: rgba(0, 0, 0, .2);
	padding: 2rem;
}

/* Single-section overlay */
.hero {
	position: relative;
	margin: 0 auto;
	padding: 30px;
	width: calc(100vw - 70vw);
	min-height: 380px;
	/* transform: translateY(20%); */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	box-shadow: 0px 0 31px 0px rgb(0 0 0 / 10%);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero img {
	width: 300px;
}

.hero h2 {
	font-size: 2rem;
	padding: 2rem 0; 
    color: goldenrod;
}

.hero p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
}

.hero button {
	padding: .75rem 2rem;
	font-size: 1rem;
	border: none;
	background: #fff;
	color: #000;
	cursor: pointer;
	transition: .3s;
}

.hero button:hover {
	background: #ddd;
}