* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

@font-face {
	font-family: reflex;
	src: url("/fonts/reflex.ttf")
}

@font-face {
	font-family: techno;
	src: url("/fonts/techno.ttf")
}

@font-face {
	font-family: aerospa;
	src: url("/fonts/aerospa.ttf");
}

body {
	display: flex;
	font-family: sans-serif;
	background-image: url("/images/background-tiles.jpg");
	background-repeat: repeat;
	color: white;
	min-height: 10rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.top-bar {
	margin-top: 0;
	background-image: url("/images/moonglitter.gif");
	border-radius: 0 0 10rem 0;
	border: .3rem solid red;
	box-shadow: 0rem 0.3rem 3rem 6rem rgba(0, 0, 0, 0.25);
	width: 100%;
	text-align: center;
}

.title {
	margin-top: 1rem;
	color: red;
	-webkit-text-stroke: .1rem #66ff00;
	font-size: 5rem;
	font-weight: bolder;
	font-family: reflex;
}

.nav-buttons {
	margin-top: 1rem;
	margin-bottom: 1rem;
	display: flex;
	justify-content: center;
	gap: 5rem;
}

.nav-button {
	display: inline-flex;
	padding: 0.7rem;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.7rem;
	border-radius: 1.2rem;
	background: #F00;
	color: #000;
	font-size: 2rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-decoration: none;
	font-weight: bold;
	transition-timing-function: ease-in;
	transition: background-color .5s;
	font-family: techno;
	-webkit-text-stroke: .03rem #ffe600;
}

.nav-button:hover {
	background-color: rgb(26, 255, 0);
}

.content,
.visitor {
	margin-top: 2rem;
	background-image: url("/images/borat-git-small.jpg");
	background-repeat: repeat;
	background-size: 7rem;
	border-radius: 1rem;
	border: .3rem solid #66ff00;
	width: 80%;
}

.content-text {
	color: rgb(255, 98, 0);
	-webkit-text-stroke: 0.04rem rgb(255, 255, 255);
	padding: 2rem;
	font-size: 1rem;
}

.content-text h1 {
	color: rgb(255, 98, 0);
	-webkit-text-stroke: 0.04rem rgb(255, 255, 255);
	font-weight: bold;
	padding: 2rem;
	font-size: 1.5rem;
}

.visitor {
	width: 20%;
	margin-left: 20rem;
}

.obrigado {
	width: 60%;
	text-align: center;
	font-family: aerospa;
	background-image: url("/images/obrigado-background.gif");
	color: rgb(255, 98, 0);
	padding: 1rem;
}

.video-block {
	margin-top: 2rem;
	background-image: url("/images/borat-git-small.jpg");
	background-repeat: repeat;
	background-size: 7rem;
	border-radius: 1rem;
	border: .3rem solid #66ff00;
	width: 40%;
	text-align: center;
}

.video-block h2 {
	color: rgb(255, 98, 0);
	-webkit-text-stroke: 0.04rem rgb(255, 255, 255);
	font-size: 2rem;
	margin-bottom: 5%;
	margin-top: 5%
}

.video-iframe {
	width: 80%;
	aspect-ratio: 16/9;
	margin-bottom: 10%;
}