@font-face {
	font-family: 'Copperplate';
	src: url('Copperplate.ttf');
}
.container {
	max-width: 100%;
}

.logo {
	height: 50%;
	width: 50%;
	display: block;
	margin-top: 10vh;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2%;
}

body {
	background-image: url(images/background-copy.jpg);
	background-size: 100%;
	background-attachment: fixed;
	background-repeat: no-repeat;
	scrollbar-width: none;
	font-family: "Copperplate";
	padding: 5;
	margin-bottom: 5%;

	font-size: 16pt;
}

#nav {
	font-family: 'Copperplate';
	margin-top: 10vh;
	margin-bottom: 0.5%;
	min-height: 50px;
	display: flex;
	flex-wrap: nowrap;
	background-color: rgba(255, 255, 255, 0.376);
	font-size: 20pt;
	margin-left: 4.5%;
	margin-right: 5.5%;
}	
.nav-link {
	margin-left: 0;
	padding-left: 12px;
	padding-right: 12px;
	display: block;
	width: auto;
	white-space: nowrap;
}
.nav-link > a {
	display: block;
	padding: 0;
	margin-left: 1px;
	margin-right: 1px;
	color: rgb(31,28,50);
}
a {
	color: rgb(31,28,50);
}
a:link {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

a:active {
	text-decoration: none;
}

#java {
	background-color: rgb(163, 95, 60, 0.8);
	border: 3px black solid;
	margin-right: 0.5%;
}

#bedrock {
	background-color: rgb(195, 145, 76, 0.9);
	border: 3px black solid;
	margin-left: 0.5%;
}

.screenshot {
	display: inline-flex;
	margin-left: 10%;
	margin-right: 10%;
	max-width: 80%;
}

.rainbow-text {
	background-image: repeating-linear-gradient(45deg, blue, green, blue, green, yellow, orange, red, violet, indigo, blue);
	text-align: center;
	background-size: 800% 800%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 24px;
	animation: rainbow 8s ease infinite;
}

@keyframes rainbow { 
	0%{background-position:0% 50%}
	50%{background-position:100% 25%}
	100%{background-position:0% 50%}
}

.iptext {
	font-family: sans-serif;
	font-weight: bold;
	color: rgb(87, 232, 235);
}