*{margin: 0;
  padding: 0;
  background-color: rgba(27,27,35,1.0);} /* avoids wonky display */
 
body{overflow: hidden;}
 
nav{padding: 1.75% 4.25% 1.75%;
    background: transparent;
    position: fixed;
    z-index: 12;
    height: 20%;
    width: 90%;
    animation: navi .5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    animation-direction: normal;
    animation-play-state: paused;}
	
nav  a{background: transparent;}

 /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 768px) {
  ul {display: none;}
  a div.icon {
    display: block;
	float: right;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 768px) {
  ul.responsive {position: relative;}
  a.icon {
    position: absolute;
    right: 20px;
	top: 25%;
	z-index: 15
  }
  ul.responsive {
    position: fixed;
    display: block;
	top:0;
	left:0;
    text-align: left;
	padding-top: 60px;
	background-color: rgba(0,0,0,.85);
	height: 100%;
	width: 100%;
  }
  ul.responsive li:not(.port){
    float: none;
    display: block;
    text-align: center;
	background-color: transparent;
	
  }
}

@media only screen and (orientation: portrait) {
    li.port{
        display: block;
    }
}

.home{display: none;}

.port{display: none;}

div.icon {
    display: none;
	background-color: transparent;
	text-decoration: none;}

.bar{width: 24px;
	 height: 4px;
     background-color: snow;
     margin: 3px 0;}
	  
ul {float: right;
    background: transparent;}
	  
li{list-style-type: none;
   display: inline-block;
   padding: .5em .75em;
   margin: .25em;
   font-weight: 500;
   color: white;
   border: 2px solid transparent;
   transition: border .3s ease;}

li p{display: inline-block;
     font-weight: 600;}
   
li a{color: inherit;
     background:transparent;
     text-decoration: none;}

li.t{border: 2px solid white;
     border-radius: 2px;
	 cursor: pointer;}
 
li:hover{border: 2px solid white;
         border-radius: 2px}

a {background-color: inherit;}

li p span{background-color: transparent; 
	  font-variant: initial;}

h1, h2, h3, h4,
h5, h6, li, p{font-family: sans-serif;
			font-variant: small-caps;
			background-color: inherit;}
			
img.logo{background-color: transparent;
		 left: 2.5%;
		 height: 100%;
		 max-height: 150px}

img.land{max-width: 100%;
		height: auto;
		margin: auto;
		padding:auto;
		display: block;}
	  