@font-face {
    font-family: 'Sentient-Variable';
    src: url('/assets/fonts/Sentient-Variable.woff2') format('woff2'),
         url('/assets/fonts/Sentient-Variable.woff') format('woff'),
         url('/assets/fonts/Sentient-Variable.ttf') format('truetype');
    font-weight: 200 700;
    font-display: swap;
    font-style: normal;
}
@font-face {
    font-family: 'Author-Variable';
    src: url('/assets/fonts/Author-Variable.woff2') format('woff2'),
         url('/assets/fonts/Author-Variable.woff') format('woff'),
         url('/assets/fonts/Author-Variable.ttf') format('truetype');
    font-weight: 200 700;
    font-display: swap;
    font-style: normal;
  }
::-webkit-scrollbar {
	display: none;
	overflow: hidden;
  }

body{
    margin: auto;
    color: black;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/*NAVIGATION*/

.headergap{
    margin-top: 82px;
}

#activepage{
    color: #841f23;
}

.navheader{
    margin-left: 15px;
    background-color: #252525;
    z-index: 100;
}

.navheader button{display: none;}
.navheader img{width: 100px;}

.desktopnav{
    top: 0;
    z-index: 10000;
    width: 100%;
    background-color: #252525;
    position: fixed;
    display: flex;
    justify-content: space-between;
}

.main-nav{
    margin-right: 15px;
    margin-top: auto;
    margin-bottom: auto;
}

.main-nav ul{
    gap: 30px;
    list-style: none;
    display: flex;
    text-align: center;
}

.main-nav a{
    text-align: center;
    font-size: 2.4em;
    text-decoration: none;
    color: #ffffff;
    transition: 0.275s;
    font-family: 'Author-Variable';
    font-weight: 500;
}

.main-nav a:hover{
    color: #841f23;
}

/*Footer*/
footer{
    background-color: #252525;
  margin-top: auto;
  margin-bottom: 0px;
  text-align: center;
  color: white;
  font-family: 'Author-Variable';
}

footer h1{font-weight: 300; font-size: 22px; margin-bottom: 0px;}
footer p{font-weight: 200; margin-top: 0px; margin-bottom: 0px;}
footer img{width: 25px; margin: 0px;}

/*MOBILE*/  
@media (max-width: 800px){
/*NAVIGATION*/   

body{
  margin-left: 2%;
  margin-right: 4%;
}

.headergap{
    margin-top: 64px;
}

.navheader{
    left: 0;
    margin: auto;
    width: 100%;
	  position: fixed;
    z-index: 999999;
    display: flex;
    justify-content: space-between;   
}

.navheader button {display: block;}

.navheader img{
    position: relative;
	display: block;
	width: 75px;
	margin: 0 auto;
    margin-left: 15px;
}

.main-nav {
	z-index: 9999999999;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    text-align: center;
	opacity: 0;
    z-index: -1;
    visibility: hidden;
    transition: ease-in-out 0.175s;
}

.main-nav.is-open {
	opacity: 1;
    z-index: 100;
    visibility: visible;
    text-align: center;
    width: 100%;
    background-color: #252525;
}

.main-nav ul {
    display: inline-flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.main-nav li {
    display: block;
    margin: .5rem 0;
    text-align: center;
    opacity: 0;
    transition: ease-in-out 1.5s;
}

.main-nav.is-open li {
    opacity: 1;
}

.main-nav ul,
.main-nav li {
	list-style: none;
	padding: 0;
}
.main-nav a {
	display: block;
	padding: 12px 0;
	font-size: 2.4em;
	text-decoration: none;    
}

.open-main-nav {
	z-index: 1000;
	background: none;
	border: 0;
    margin-top: 25px;
    margin-right: 5px;
}

.open-main-nav:hover{
    cursor: pointer;
}

.open-main-nav:focus {
	outline: none;
}
.burger {
    position: relative;
	display: block;
	width: 28px;
	height: 4px;
	margin: 0 auto;
	background: #ffffff;
	transition: all .275s;
}

#burger{
  width: 40px;
  height: 40px;
	filter: drop-shadow(black 1px 1px 2px);
  margin-right: 25px;
}

.burger:after,
.burger:before {
	content: '';
	display: block;
	height: 100%;
	background: #ffffff;
	transition: all .275s;
}

.burger:after {
	transform: translateY(-12px);
}

.burger:before {
	transform: translateY(-16px);
}

.is-open .burger {
	transform: skew(5deg) translateY(-8px) rotate(-45deg);
}

.is-open .burger:before {
	transform: translateY(0px) skew(-10deg) rotate(75deg);
}

.is-open .burger:after {
	transform: translateY(-12px) translateX(10px) skew(-20deg);
    opacity: 0;
}
}