﻿@import url('https://fonts.googleapis.com/css?family=Inter:100,200,700');

.fixed-nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  height: 64px;
  font-weight: 200;
  background-color: #780000;
}

/* RESPONSIVE - TOP - NAV */
.fixed-nav-bar li, 
.fixed-nav-bar a { 
  height: 64px;
  line-height: 64px;
}

.menu {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
    font-weight: 300;
}
.menu a, 
.menu a:visited {
  color: #fff;
  font-size: 1.2em;
}

.menu a:hover, 
.menu a:target {
    color: #669bbc;
}
.menu-items {
    display: flex;
    justify-content: right;
    font-weight: 300;
}

.sitename {
  display: inline-block;
  margin-right: 20px;
  margin-left: 10px;
  font-family: 'Inter';
  font-weight: 700;
  float: left;
}

a.sitename, 
a.sitename:visited {
  color: #fff;
}

.menu-items li {
  display: inline-block;
  margin-right: 15px;
  margin-left: 15px;
}

.menu-items a {}

.show, 
.hide {
  display: none;
  padding-left: 15px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center left;
  color: #fdf0d5;
}

.show {}
.hide {}


/*MEDIA-SCREEN*/
@media only screen and (max-width: 800px) {
  .menu { 
    position: relative;
    width: 100%;
  }

  .sitename {
    position: absolute;
    top: 0;
    left: 15px;
    margin-left: 0;
  }

  .menu-items {
    display: none; 
    width: 100%;
    height: 100%;
    margin-top: 64px;
    background-color: rgba(00,30,49, 0.9);
  }

  .menu-items li {
    margin: 15px;
    display: block;
    text-align: center;
  }

  .show, .hide {  
    position: absolute;
    top: 0;
    right: 15px;
  }

  .show {
    display: inline-block;
  }

  .hide {
    display: none !important;
  }
  #menu:target .show {
    display: none !important;
  }

  #menu:target .hide, 
  #menu:target .menu-items {
    display: inline-block;
  }
}

@media only screen and (max-width: 220px) {
  .sitename, 
  .show, 
  .hide {
    font-size: 14px;
  }
}