@font-face {
  font-family: Pix; /* set name */
  src: url(fonts/PixelFraktur.ttf); /* url of the font */
}
@font-face {
  font-family: Cho; /* set name */
  src: url(fonts/Chomsky.otf); /* url of the font */
}
@font-face {
  font-family: Blu; /* set name */
  src: url(fonts/blueDOS8.ttf); /* url of the font */
}

body {
	background-color:#1E1F1E;
} 
p {
	color: #E1F7DE;
	font-family: "Blu","Arial","Times New Roman";
}
b {
	color: #337038;
}
a{
	display:inline-block;
}
a:link {
	text-decoration: none;
	color: #E1F7DE;
}
a:visited {
	text-decoration: none;
	color: #E1F7DE;
}
a:hover {
  transform:rotate(3deg);
  color: #E1F7DE;
}
.Main {
  display: flex;
  justify-content: center;
  align-items: center;
}
h1 {
	text-align: center;
	color: #337038;
	font-family: "Pix","Arial","Times New Roman";
}
/* Return Button*/
.Return {
  display: flex;
  justify-content: center;
  align-items: center;
  
}
.Return button {
	color: #E1F7DE;
	margin-top: 20px;
	margin-bottom: 5px;
	text-align: center;
	width: 200px;
    height: 50px;
    background-color: #1E1F1E;
	border: 1px solid #337038;
	font-size: 40px;
	font-family: "Blu","Arial","Times New Roman";
}
.Return button:hover {
  color: #E1F7DE;
  transform:scale(1.1,1.1) rotate(-5deg);
}