

body {
	background-color: #333;
	color: #fff;
}

.video-container {
	border-radius: 25px;
	overflow: hidden;
	position: relative;
}

.video-container video {
	width:100%;
	height:auto;
}

.video-container .text-container {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: top;
	align-items: center;
	width: 100%;
	height: 100%;
}

.video-container .text-container h1, .video-container .text-container p {
	text-shadow: 2px 2px 0px #222;
	color:#fff;
}

.img-container {
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.img-container img {
	width:100%;
	height:auto;
}

.img-container .text-container {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: top;
	align-items: center;
	width: 100%;
	height: 100%;
}

.img-container .text-container h1, .img-container .text-container p {
	text-shadow: 2px 2px 0px #222;
	color:#fff;
}


