@font-face {
    font-family: Nighty;
    src: url("./Nightydemo.otf") format("opentype");
}

@font-face {
    font-family: Magilio;
    src: url("./MagilioRegular.otf") format("opentype");
}

.header {
  padding: 5px;
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  
  display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;

}

.header_name {
  padding: 5px 0;
  font-family: 'Magilio', sans-serif;
	font-size: 55px;
	font-weight: bolder;
	line-height: 50px;
	
	text-align: center;
	
	order: 1;
}

.header_name > a {
	text-decoration: none;
	color: #251605;
}

.header_name > a:hover {
	color: #251605;
	text-decoration: underline;

}

.header_name > a:active {
	color: #251605;
	text-decoration: underline;

}

.header_socials {
  
  padding: 5px;
  text-align: center;
  
  order: 2;
}

.color_filter {
  filter: invert(10%) sepia(20%) saturate(1473%) hue-rotate(351deg) brightness(94%) contrast(102%);
}

/* Small screens (mobile) */
@media all and (max-width: 540px) {
.header {
  flex-flow: column wrap;
}  

}

.desktop_nav {
	
	padding: 5px;
	margin: 0;
	max-width: 100%;
	min-height: 50px;
	background-color: #eb7925;
	position: relative;
	
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
}

a.desktop_nav_link {
	
	order: 1;
	flex-shrink: 0;
	align-self: center;
	
	color: #251605;
	background-color: #f5be27;
	
	font-family: 'Rubik';
	font-size: 20px;
	font-variant: small-caps;
	text-decoration: none;
	
	border: 1px solid #7e604e;
	border-radius: 4px;
	padding: 2px 20px;
	margin: 2px 7px 2px 7px;

	-webkit-transition: background-color .3s ease-in; 
  -moz-transition: background-color .3s ease-in; 
  -o-transition: background-color .3s ease-in; 
  transition: background-color .3s ease-in; 
}

a.desktop_nav_link:hover {
	
	color: #feefe5;
	text-decoration: none;
	background-color: #7f7a39;
}

a.desktop_nav_link:active {
	
	color: #feefe5;
	background-color: #7f7a39;
	text-decoration: none;
	
}

.mobile_nav_button {
  color: #ffffff;
  font-family: 'Rubik';
	font-size: 25px;
	font-variant: small-caps;
  
	padding: 0;
	margin: 0;
	width: 100%;
	max-width: 100%;
	min-height: 50px;
	background-color: #eb7925;
	position: relative;
	
	border: 0;
}

.mobile_nav_dropdown {
	padding: 0;
	margin: 0;
	width: 100%;
	max-width: 100%;
	background-color: #ffffff;
	position: relative;

}

.collapse > a, .in >a {
  
  font-family: "Rubik";
	font-size: 20px;
	font-variant: small-caps;
	text-decoration: none;
	text-align: center;
	
	margin: 0;
	width: 100%;
	min-width: 100%;
	min-height: 60px;
	position: relative;
  
}

.mobile_nav_link1 {

	background-color: #f5be27;
	text-align: center;
	
	padding: 5px 0;
	margin: 0;
	max-width: 100%;
	min-height: 40px;
	position: relative;
}

.mobile_nav_link2 {

	background-color: #7f7a39;
	text-align: center;
		
	padding: 5px 0;
	margin: 0;
	max-width: 100%;
	min-height: 40px;
	position: relative;
}

.mobile_nav_link1 > a, .mobile_nav_link2 > a {
  color: #251605;
  font-family: "Rubik";
	font-size: 25px;
	font-weight: bold;
	font-variant: small-caps;
	text-decoration: none;

}

.mobile_nav_link1 > a:hover, .mobile_nav_link2 > a:hover {
  color: #feefe5;
	text-decoration: none;
}

.arrow-down {
  width: 0; 
  height: 0; 
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  
  border-top: 10px solid #ffffff;
  vertical-align: central;
}
/*
.webring {
  width: 100%;
  font-family: "Rubik";
	font-size: 17px;
	font-variant: small-caps;
	text-align: center;
  
  position: absolute;
  bottom: 30px;
  
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto;
  grid-column-gap: 10px;
  justify-content: center;
  justify-items: center;
  
}

.lowtech_sub {
  font-size: 15px;
  
  grid-area: 1 / 1 / 2 / 4;
}

.lowtech_img {
  grid-area: 2 / 2 / 3 / 3;
}

.lowtech_img > a > img {
  max-width: 150px;
}

.lowtech_leftlink {
  grid-area: 2 / 1 / 3 / 2;
  align-self: center;
}

.lowtech_rightlink {
  grid-area: 2 / 3 / 3 / 4;
  align-self: center;
}

.lowtech_leftlink > a, .lowtech_rightlink > a {
  color: #01959f;
  text-decoration: none;
  
  -webkit-transition: color .3s ease-in; 
  -moz-transition: color .3s ease-in; 
  -o-transition: color .3s ease-in; 
  transition: color .3s ease-in; 
}

.lowtech_leftlink > a:hover, .lowtech_rightlink a:hover {
  animation: colorchange 0.8s ease forwards;
  color:#000000;
}

@keyframes colorchange {
    100% { color:#000000; }
}
*/
/* Small screens (mobile) */
@media all and (max-width: 540px) {
.desktop_nav {
    display: none;
  }
  
.footer {
    display: none;
  }

.webring {
    display: none;
  }

}

/* Large screens (desktop) */
@media all and (min-width: 541px) {
.mobile_nav {
    display: none;
  }

}

.footer {
  
  color: #251605;
	background-color: #feefe5;
	
	font-family: "Rubik";
	font-size: 15px;
	font-variant: small-caps;
	text-decoration: none;
	
	border-top: 2px dotted #7e604e;
	
	width: 100%;
	max-width: 100%;
	text-align: center;
	
	position: fixed;
	left: 0;
	bottom: 0;
}

.footer > a {
  color:#7f7a39;
}

.footer > a:hover {
  color:#7f7a39;
  text-decoration: underline;
}