:root {
	--blue-top: #3144B0;
	--button: #426fca;
	--blueish: #00555a;
	--Menu-blue: #0067B0;
	--highlight-blue: #426fca;
}

body {
	background: var(--blueish);
}

.direction {
	text-align: center;
}

.item {
	border-radius: 15px;
	padding: 10px;
	height: auto;
	background-image: linear-gradient(to top, #ECECF2, #ECECF2);
	overflow: hidden;
	transition: 0.5s;
	margin: 10px;
	scroll-snap-align: start;
}

.item .avatar {
	display: block;
	/* margin: 2px auto 10px; */
	padding: 5px;
	width: auto;
	height: 40px;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 0 15px #7e878d;
	font-size: 25px;
	text-align: center;
}

.item .content {
	/* padding: 30px; */
	font-family: monospace;
	font-size: 30px;
}

#list {
	display: inline-flex;
	width: max-content;
}

#formList {
	/* width: 1280px;
	max-width: 100%; */
	overflow: auto;
	/* margin: 100px auto 50px; */
	scroll-behavior: smooth;
	scroll-snap-type: both;
}

#formList::-webkit-scrollbar {
	display: none;
}

@media screen and (max-width: 1024px) {
	.item {
		width: calc(100vw - 20px);
	}

	.direction {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.item {
		width: calc(100vw - 20px);
	}

	.direction {
		display: none;
	}
}

.masthead-video {
	position: relative;
	height: 100vh;
	width: auto;
	padding-top: 5rem;
	/* display: flex; */
	/* align-items: center; */
	justify-content: center;
	overflow: hidden;
	font-family: var(--font-to-use);
}

.video-wrapper {
	position: relative;
	top: 0;
	left: 0;
	height: 15vh;
	width: auto;
	z-index: 0;
	/* Pushes video behind other content */
}

.video-background {
	position: relative;
	top: 0;
	left: 0;
	height: 30vh;
	width: 100%;
	object-fit: cover;
	z-index: -1;
}

.masthead-background {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	z-index: -1;
}