/*=================================*/
/* DRRN.dev
/* By: Gilbert Pellegrom & Darren B
/* http: //dev7studios.com https://drrn.dev
/*=================================*/

@font-face {
	font-family: 'NaturalMonoBold';
	src: url('../css/NaturalMono-Bold.ttf');
}
@font-face {
	font-family: 'NaturalMono';
	src: url('../css/NaturalMono-Regular.ttf');
}

body {
	background: #000;
	color: #FFF;
	font-family: "NaturalMono";
}
.layout{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-direction: row;
}
#content{
	margin-top: 180px;
	min-width: 300px;
	padding: 20px;
}
a{
	color: #718752;
}

h1, h2, h3, h4, h5, h6 {
    color: #fff;
    line-height: 1.4em;
    margin-bottom: 0.6em;
}

h1 {
    font-size: 2em;
	font-family: "NaturalMonoBold";
}

h2 {
    font-size: 1.25em;
}

h3 {
    font-size: 1.1em;
    margin-top: 2em;
}

p, table {
    margin-bottom: 1em;
}

ol, ul {
    padding-left: 30px;
    margin-bottom: 1em;
}

b, strong {
    font-weight: bold;
}

i, em {
    font-style: italic;
}

u {
    text-decoration: underline;
}

abbr, acronym {
    cursor: help;
    border-bottom: 0.1em dotted;
}

td, td img {
    vertical-align: top;
}

td, th {
    border: solid 1px #999;
    padding: 0.25em 0.5em;
}

th {
    font-weight: bold;
    text-align: center;
    background: #eee;
}

sub {
    vertical-align: sub;
    font-size: smaller;
}

sup {
    vertical-align: super;
    font-size: smaller;
}

code {
    font-family: Courier, "Courier New", Monaco, Tahoma;
    background: #eee;
    color: #333;
    padding: 0px 2px;
}

pre {
    background: #eee;
    padding: 20px;
    margin-bottom: 1em;
    overflow: auto;
}

blockquote {
    font-style: italic;
    margin: 0 0 1em 15px;
    padding-left: 10px;
    border-left: 5px solid #a48300;
}
.nav-container{
	min-width: 300px;
	flex: 1;
}
.container {
	padding: 2%;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	position: fixed;
}
#header {
	text-transform: lowercase;
	text-decoration: line-through;
	text-decoration-style: wavy;
	text-decoration-color: #ae81ff;
	min-height: 200px;
	font-size: 5em;
	text-align: right;
	padding-left: 2%;
}
#header a {
	text-decoration:none;
	color: #4ec3c3;
	font-weight: bold;
}

#content {
	padding: 2% 2% 2% 24%;
	height:auto;
	min-height:300px;
}
.inner {
	width: 85%;
}
   
.inner img {
        width:100%;
    }
#navbar {
	line-height:2em;
	border-right: 6px solid #ae81ff;
	height:auto;
	min-height:300px;
	text-align:right;
	padding-right: 15px;
	padding-top: 30px;
}
#navbar ul {
	list-style-type:none;
}
#navbar a {
	text-decoration:none;
	color: #ae81ff
}

footer {
	width: 100%;
	padding: 2%;
	text-align: center;
	font-size: smaller;
	color: #494f59;
}

.inner p img{
	width: auto;
	max-width: 60%;
    height: auto;
	border: 4px #FFF solid;
	margin-bottom: 20px;
}

.project{
	padding: 10px;
	background-color: #0e1114;
	margin-bottom: 20px;
	border: 2px solid #0e1114;
}
.project h1{
	color: #ae81ff;
}
.project h2{
	color: #838383;
}
.card a{
	color: #FFF;
	text-decoration: none;
}
.project:hover{
	cursor: pointer;
	border: 2px dotted #ae81ff;
	background-color: #28313a;
}
.platforms, .languages{
	padding: 0 10px;
	background-color: #050505;
	color: #4ec3c3;
}
.languages{
	color: #ae81ff;
}

.date{
	padding: 10px;
	font-style: italic;
}
@media (max-width: 1080px) {
	#header{
		font-size: 14em;
		text-align: center;
		padding: 0;
	}
	.container {
		text-align: center;
		position: relative;
	}
	#content {
		margin-top: 0;
		padding: 5%;
	}
	.layout {
		flex-direction: column;
	}
	.inner {
		width: 100%;
	}
	#navbar {
		font-size: 2.4em;
		border-right: 0;
		border-bottom: 6px solid #ae81ff;
		min-height:150px;
		text-align:center;
		padding-bottom: 15px;
	}
	h1 {
		font-size: 4em;
	}

	h2 {
		font-size: 2.5em;
	}

	h3 {
		font-size: 2.2em;
	}
	footer {
		padding: 1em;
		font-size: 1.15em;
	}
}