* {
	margin: 0;
	padding: 0;
	font-size: 12px;
	color: #fffff0;
	/*background-color: #efe2c3;*/
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

#elements {
	z-index: 1; 
	position: absolute;
	width: 500px;
	height: 400px;
	left: 11%;
	top: 25%;
}

a {
	text-decoration: none;
}

video{
	width:100vw;
	height: 100vh;
	object-fit: cover;
	z-index: -1;
}

h1 {
	display: inline-block;
	font-family: 'Abril Fatface', cursive;
	letter-spacing: 1px;
	font-size: 100px;
	font-weight: 400;
    line-height: 62px;
    width: 452px;
    height: 70px;
    margin-bottom: 300px;
    padding-top: 2px;
    color: #fffff0;
    background-color: rgba(34, 44, 78, 0.7);

}

h2 {
	font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 25px;
    word-spacing: 2px;
    line-height: 35px;
    position: relative;
    top: -220px;
    margin-left: 10px;
}

h2 a {
	font-family: 'Lato', sans-serif;
	font-weight: 800;
	font-size: 25px;
	letter-spacing: 1px;
	border-bottom: 1.5px dotted beige;
}

h2 a:hover {
	color:pink;
	border-bottom: 1.5px dotted pink;
}

h2 a:visited {
	animation: 1s slideInFromBottom;
}

@keyframes slideOutFromBottom {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

#bottomBar {
	font-family: 'Lato', sans-serif;
	display: inline-block;
	position: absolute;
	bottom: 10%;
	right: 25%;
	color: beige;
	letter-spacing: .5px;
}

#bottomBar em{
	color: beige;
	height: 30px;
	margin-bottom: 4px;
	width: 100px;
}

#bottomBar em:hover {
	position: relative;
	bottom: 2px;
}

#playButton {
	display: inline-block;
	font-family: 'Lato', sans-serif;
	font-size: 8px;
	position: relative;
	left: 300px;
	top: -2px;
	height: 30px;
	width: 30px;
	border-radius: 100%;
	border: .8px solid beige;
	box-sizing: border-box;
	padding-left: 3px;
	padding-top: 7px;
}

#playButton i:first-of-type {
    font-size: 10px;
    color: beige;
    position: relative;
    right: -8.5px;
    opacity: 0;
    top: 1.05px;
}

#playButton i:last-of-type {
	color: beige;
    font-size: 10px;
    position: relative;
    right: 3.2px;
    top: 1.05px;
}

#playButton:hover {
	border: .8px dashed beige;
}




