body {
	background-color: black; /*#111111*/
	padding: 0;
	border: 0;
	margin: 0;
	color: rgba(255, 255, 255, 0.25);
}

a:link,
a:visited {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
}

a:hover {
	color: #FFFFFF;
	text-decoration: none;
}

video {
	padding: 0;
	border: 0;
	margin: 0;
}

#bgvideo {
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	margin: 0;
	object-fit: cover;
	position: fixed;
}

.content {
	position: absolute;
	padding: 0;
	border: 0;
	top: 0;
	background: rgba(0, 0, 0, 0);
	color: rgba(255, 255, 255, 0.25);
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.short-description {
	width: 750px;
	max-width: 95%;
	font-size: 1.8em;
	color: lightgray;
	font-style: italic;
}

.stores-heading {
	font-size: 48px;
	color: white;
}

.stores {
	margin-bottom: 100px;
	width: 500px;
	max-width: 95%;
	border: solid white 1px; 
	padding: 20px 30px;
	display: flex;
	flex-direction: column;
    align-items: center;
}

.store-row.logos {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.store-logo {
	margin-top: 25px;
	transition: transform .08s ease, filter .15s ease;
}

.store-logo:hover {
	filter: brightness(1.08);
	transform: translateY(-1px);
}

.store-logo img {
	height: 64px;
	width: auto;
	display: block;
}

.brandmark {
	width: 300px;
	height: auto;
	mix-blend-mode: screen;
	display: block;
	margin: 24px auto 0;
}

@media (max-width:640px) {
	.stores {
		width: 320px;
		padding: 10px 0;
	}
	.store-row.logos {
		flex-direction: column;
		justify-content: center;
	}

	.brandmark {
		width: 260px;
	}
}
