
@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400..700&display=swap');

html, body {
	margin: 0;
	padding: 0;
	background-color: #000000;
	font-size: 16px;
	color: #FFFFFF;
}

* {
	box-sizing: border-box;
}

.background {
	overflow: hidden;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
	filter: brightness(50%) contrast(100%);
}

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

.container {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-content: stretch;
	align-items: center;
}

.name {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	
	font-family: "Domine", serif;
	font-size: 5rem;
	font-weight: bold;
 	text-shadow: 2.5px 2.5px 5px rgba(0, 0, 0, 1);
}

.name .fostered {
	
}

.name .talent {
	
}

.name .full-stop {
	color: #8623D8;	
}