:root {
	--background: #212121;
	--foreground: #b8bec5;
	--link: #82aaff;
}

* {
    color: var(--foreground);
    font-size: 1.2em;
    text-align: center;
    font-family: sans-serif;
	margin: 0;
	padding: 0;
}

.showcase {
	position: relative;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 20px;
	background-color: var(--background);
}

.video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.video video {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
}

.video:after {
	content: '';
	z-index: 1;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
}

.content {
	z-index: 2;
}

body {
    background-color: var(--background);
}

a {
        color: var(--link);
        text-decoration: none;
}

p {
    text-align: center;
}

.flex-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.flex-item {
    background-color: var(--background);
    height: 2em;
    width:  5em;
    padding-top:0.5em;
    padding-bottom: 0em;
    border-radius: 25px;
}
