

* { 
	margin: 0; 
	padding: 0; 
} 

body { 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	height: 950px; 
	flex-direction: column; 
	border: none; 
    background:black;
    font-family: MONOSPACE;
}   

.goaway {
    font-family: linkfont;
    font-size:30px;
    text-decoration:none;
    color:#A128D3;
}

.div-text {
    padding-bottom: 10px; 
    display: flex; 
    justify-content: space-around; 
    flex-direction: column; 
    align-items: center; 
}

.div-logo {
    padding-bottom: 10px; 
    display: flex; 
    justify-content: space-around; 
    flex-direction: column; 
    align-items: center; 
}

.video-container { 
    max-width: 8800px; 
	max-height: 500px; 
	position: absolute; 
	border: 1px; 
	border-style: ridge; 
	margin: 0 auto; 
	background-color: transparent; 
}

.vid_hidden {
    visibility:hidden; 
} 

.vid_visible {
    visibility:visible; 
}

#video, 
img {
    width: 900px; 
	height: 600px;
}


/* SVG */

svg {
    font: 14.5em logofont;
    width: 1800px;
    height: 300px;
    margin: 0 auto;
}

.text-copy {
    fill: none;
    stroke: white;
    stroke-dasharray: 6% 29%;
    stroke-width: 5px;
    stroke-dashoffset: 0%;
    animation: stroke-offset 5.5s infinite linear;
}

.text-copy:nth-child(1){
	stroke: #C5C6C7;
	animation-delay: -1;
}

.text-copy:nth-child(2){
	stroke: #676765;
	animation-delay: -2s;
}

.text-copy:nth-child(3){
	stroke: #C60C30;
	animation-delay: -3s;
}

.text-copy:nth-child(4){
	stroke: #FF1A1A;
	animation-delay: -4s;
}

.text-copy:nth-child(5){
	stroke: #9E3AC3;
	animation-delay: -5s;
}

@keyframes stroke-offset{
	100% {stroke-dashoffset: -35%;}
}