.demo-typewriter span {
    color: #262626;
    overflow: hidden;   
    border-right: .10em solid #FF8D8D;
    white-space: nowrap;   
    margin: 0 auto;   
    letter-spacing: .4rem;   
    animation: demo-typewriter 3s steps(30, end), demo-cursor 1s step-end infinite;
  }
  @keyframes demo-typewriter {
    from { 
      width: 0;
    }
    to { 
      width: 100%;
    }
  }
  
  @keyframes demo-cursor {
    from, to { 
      border-color: transparent; 
  }
    50% { 
  border-color: #FF8D8D; 
    }
  }


/* Add Flexbox Nav bar */

* {
	box-sizing: border-box;
}
body {
	font-family: 'Montserrat', sans-serif;
	line-height: 1.6;
	margin: 0;
	min-height: 100vh;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}


h2,
h3,
a {
	color: #34495e;
}

a {
	text-decoration: none;
}



.logo {
	margin: 0;
	font-size: 1.45em;
}

.main-nav {
	margin-top: 5px;

}
.logo a,
.main-nav a {
	padding: 5px 15px;
	text-transform: uppercase;
	text-align: center;
	display: block;
}

.main-nav a {
	color: #34495e;
	font-size: .99em;
}

.main-nav a:hover {
	color: #718daa;
}



.header {
	
	border: transparent;
	background-color: transparent;
	
    /*
    padding-top: .5em;
	padding-bottom: .5em; 
    -webkit-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
*/

}


/* ================================= 
  Media Queries
==================================== */




@media (min-width: 769px) {
	.header,
	.main-nav {
		display: flex;
	}
	.header {
		flex-direction: column;
		align-items: center;
    	.header{
		width: 80%;
		margin: 0 auto;
		max-width: 1150px;
	}
	}

}

@media (min-width: 1025px) {
	.header {
		flex-direction: row;
		justify-content: space-between;
	}

}




/* NICE links */


a.xxclass {
	outline: none;
	text-decoration: none;
	padding: 2px 1px 0;
/*	color: #18272F; */
	font-weight: 700;
	position: relative;
  }
  
  a.xxclass:link {
	color: #265301;
  }
  
  a.xxclass:visited {
	color: #437a16;
  }
  
  a.xxclass:focus {
	border-bottom: 1px solid;
	background: #bae498;
  }
  
  a.xxclass:hover {
	border-bottom: 1px solid;
	background: #cdfeaa;
  }
  
  a.xxclass:active {
	background: #265301;
	color: #cdfeaa;
  }

a.hereweare {
	border-bottom: 1px solid;
	background: #cdfeaa;
	outline: none;
	text-decoration: none;
	padding: 2px 1px 0;
/*	color: #18272F; */
	font-weight: 700;
	position: relative;

}

