/* Background pattern from Subtle Patterns */
body {
	padding: 30px 0;
	font-family: 'Roboto', sans-serif;
	background: #eee;
	margin: 0;
	display: flex;
    min-height: 100vh;
    flex-direction: column;
}


a {
	    color: #79c9ff;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
	color: #98ddff;
}

.title i {
	font-size: 22px;
}


b {
	font-weight: bold;
}

.title b {
	display: inline-block;
}

h2 {
	font-size: 18px;
	margin: 0;
}

h3 {
	margin: 0;
	font-size: 14px;
}

#logo {
	text-align: center;
	overflow: hidden;
	position: relative;
	width: 100%;
	background: transparent;
}

#content {
	text-align: left;
	width: 1200px;
	margin: 30px auto;
}

#main {
	text-align: left;
	width: 1200px;
	margin: 30px auto;
	flex: 1 0 auto;
}

#menu {
	width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

#footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: rgba(0,0,0,0.64);
	color: #222;
		
}

#skill {
	
}

#loadingDiv {
	height: 10px;
	overflow: hidden;
}

.box {
	-webkit-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75);
	border-width: 1px;
	border-color: #000;
	display: block;
	overflow: hidden;
}

.box-home {
	width: 380px;
	margin: 10px;
	float: left;
	background-color: #eee;
}

.box-head {
	margin-left: 10px;
	background-color: #eee;
	float: left;
	width: 1180px;
	margin-bottom: 10px;
}

.box-main {
	margin: 10px;
	float: left;
	background-color: #eee;
}

.box-results {
	margin: 5px;
	line-height: 38px;
}

.box-button {
	margin: 10px;
	float: left;
	cursor: pointer;
}

.red {
	background-color: #800000
}

.purple {
	background-color: #290066;
}

.blue {
	background-color: #003d99;
}

.black {
	background-color: #aaa;
}

.orange, .music {
	border-color: #c77200;
	-webkit-transition: border-color 0.5s;
    transition: border-color 0.5s;
	border-width: 6px;
    border-style: solid;
}

	.orange:hover, .music:hover {
		border-color: #ff9200;
	}

.wood, .resources, .tools {
	border-color: #902600;
	-webkit-transition: border-color 0.5s;
    transition: border-color 0.5s;
	border-width: 6px;
    border-style: solid;
}

	.wood:hover, .resources:hover, .tools:hover {
		border-color: #ff4300;
	}

.lightblue, .about {
	border-color: #006bb3;
	-webkit-transition: border-color 0.5s;
    transition: border-color 0.5s;
	border-width: 6px;
    border-style: solid;
}

	.lightblue:hover, .about:hover {
		border-color: #00a4ff;
	}

.darkred, .youtube {
	border-color: #5b0000;
	-webkit-transition: border-color 0.5s;
    transition: border-color 0.5s;
	border-width: 6px;
    border-style: solid;
}

.darkred:hover, .youtube:hover {
	border-color: #c70000;
}

.darkblue, .home {
	border-color: #00265f;
		-webkit-transition: border-color 0.5s;
    transition: border-color 0.5s;
	border-width: 6px;
    border-style: solid;
}
	.home:hover {
		border-color: #003d99;
	}

.darkpurple, .twitch, .galbutton {
	border-color: #1c0046;
	-webkit-transition: border-color 0.5s;
    transition: border-color 0.5s;
	border-width: 6px;
    border-style: solid;
}

.darkpurple:hover, .twitch:hover, .galbutton:hover {
	border-color: #5100cc;
}

.ozlogo {
	width: 350px;
	padding: 8px;
	margin: 5px auto;
	-webkit-filter: drop-shadow(0px 0px 3px rgba(34, 34, 34, 0.5));
	filter: drop-shadow(0px 0px 2px rgba(34, 34, 34, 0.5));
	transition: -webkit-filter 0.5s;
	transition: filter 0.5s;
	cursor: pointer;
}

	.ozlogo:hover {
		-webkit-filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.8));
		filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.8));
	}

.avatar {
	float: left;
	margin: 5px 10px;
	max-width: 180px;
}

.avatar-container {
	margin: auto;
}

#load-bar {
  position: relative;
  width: 100%;
  height: 6px;
  background-color: #fdba2c;
}
.bar {
  content: "";
  display: inline;
  position: absolute;
  width: 0;
  height: 100%;
  left: 50%;
  text-align: center;
}
.bar:nth-child(1) {
  background-color: #da4733;
  animation: loading 3s linear infinite;
}
.bar:nth-child(2) {
  background-color: #3b78e7;
  animation: loading 3s linear 1s infinite;
}
.bar:nth-child(3) {
  background-color: #fdba2c;
  animation: loading 3s linear 2s infinite;
}
@keyframes loading {
    from {left: 50%; width: 0;z-index:100;}
    33.3333% {left: 0; width: 100%;z-index: 10;}
    to {left: 0; width: 100%;}
}

.desc {
	text-align: left;
	margin: 10px 5px;
	padding: 5px;
	width: 1160px;
}

.element {
	max-width: 400px;
	margin: 10px;
}

.news-element {
	margin: 10px;
	background-color: #ddd;
	border: 2px solid #000;
	text-align: left;
	overflow: hidden;
	position: relative;
}

.news-header {
	background-color: #666;
	color: #fff;
	font-weight: 800;
	float: left;
	width: 100%;
    padding: 5px;
}

.date {
	display: inline-block;
	text-align: right;
	color: #fff;
	font-style: italic;
	position: absolute;
    right: 5px;
    line-height: 28px;
}

.gthumb {
	width: 360px;
	margin: 12px;
}

.header {
	width: 100%;
	min-height: 225px;
	position: absolute;
	top: 0;
	left: 0;
	background: transparent;
}

.logocontainer {
	display: block;
}

.parallax {
	background-attachment: fixed;
	background-position: center -400px;
	background-repeat: no-repeat;
	background-size: cover;
  	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	transition: background-image 1s ease-in-out;
	background-image: none;
	transform: translate3d(0,0,0);
	-webkit-transform: translate3d(0,0,0);

  /**
   * Default height
   */
  height: 100%;
}

.subst-header {
	background-image: url(/img/headeroz.jpg);
    background-position: center -400px;
    -webkit-background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
	position: absolute;
    width: 100%;
    height: 220px;
}

.element {
	font-size: 11pt;
	font-weight: 400;
	color: #000;
	display: block;
	float: left;
	margin-right: 30px;
}

	#elem:hover {
		background-color: rgba(80, 80, 80, 0.3);
	}

.title {
	width: 100%;
	color: #000;
	font-weight: 900;
	padding: 5px;
	font-variant: small-caps;
	text-align: center;
	font-size: 18pt;
	line-height: 32px;
}

.download {
	position: relative;
	width: 100%;
	clear: both;
}

.dl {
	background-color: #902600;
	width: 100%;
	color: #dfff;
	font-weight: 900;
	padding: 10px;
	font-variant: small-caps;
	text-align: center;
	font-size: 16pt;
	line-height: 18px;
	width: 220px;
	-webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;
	position: absolute;
	right: 10px;
	bottom: 0;
}

	.dl:hover {
		background-color: #ff4300;
	}

.dl i {
	font-size: 20px;
}

.homedesc {
	font-size: 11pt;
	font-weight: 400;
	color: #000;
	padding: 10px;
	height: 130px;
	overflow: hidden;
}

.desc2 {
	font-size: 11pt;
	font-weight: 400;
	color: #222;
	padding: 10px;
	overflow: hidden;
}

.skill {
	color: #222;
	font-size: 11pt;
	font-weight: 400;
	padding: 10px 5px 5px 5px;
}

.parallax-window {
	min-height: 400px;
	background: transparent;
	
}

#videogrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 10px;
}

.videothumb {
	height: 180px;
}

.videotitle {
	padding: 5px;
}

.youtube-video {
	    background-color: #00265f;
		display: grid;
		transition: background-color 0.5s;
}
	.youtube-video:hover {
		background-color: #003d99;
	}

/* width */
::-webkit-scrollbar {
    width: 10px;
	position: absolute;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

.fl {
	float: left;
	padding: 6px;
}

.fr {
	float: right;
	padding: 6px;
}


@media (max-width: 1440px) {
	body {
		padding: 10px;
	}
	
	#content , #main {
		width: 100%;
		margin: 15px auto;
	}
	
	.ozlogo {
		max-width: 75%;
	}
	
	.box-home, .box-button, .box-head, .box-main {
		width: 100%;
		margin: 10px auto;
	}
	
	.element {
		margin: 0 auto;
		float: none;
	}
	
	.avatar {
		float: none;
		margin: 0 auto;
	}
	
	.avatar-container {
		margin: 0 auto;
	}	
	
	.homedesc {
		height: auto;
		text-align: left!important;
	}
	
	
	.skill {
		padding: 0;
	}
	
	.gthumb {
	width: 360px;
	margin: 12px;
	}
}

@media (max-width: 1020px) {
	.title b {
		display: none;
	}
	
	.title {
		padding: 5px 0;
	}
	
	.box {
		box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.75);
	}
}

@media (min-width: 1440px) {
	.subst-header {
		    background-position: center -550px;
	}
}
}
