body {
	font-family: 'Courier New', Courier, monospace;
	margin: 0;
	color: white;
	background-color: rgb(8, 27, 30);
	height: 100vh;
	background-image: url(../assets/fsoccer_logo.png);
}

.page {
	background-color: black;
	margin: 110px 150px 0 150px;
	box-shadow: 1px 1px 20px black;
	height: 90vh;
	padding-top: 4em;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
}

.page h2,
.page p {
	margin: 0;
}

.page h2 {
	text-align: center;
	overflow: hidden;
	border-right: .15em solid orange;
	white-space: nowrap;
	margin: 0 auto;
	letter-spacing: .15em;
	animation: 
		typing 3.5s steps(40, end),
		blink-caret .75s step-end infinite;
	width: 660px;
}

@keyframes typing {
	from { width: 0 }
	to { width: 660px }
}

@keyframes blink-caret {
	from, to { border-color: transparent }
	50% { border-color: orange; }
}

.page h2 span {
	color: greenyellow;
}

#first-p {
	padding-top: 2em;
}

.page p {
	text-align: center;
}

#bande {
	width: 40%;
}