	:root{
  --color-1: #092635;
  --text-color: #f0f0f0;
  --accent-color: #1b4242;
}  		  
.main-header {
  position: relative;
  width: 100%;
  height: 100px;
  background: #092635;;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
align-items: flex-end;
  height: 100%;
  padding: 4%;
  width: 25%;
}
.brand .fa-github {
  font-size: 30px;
}
.brand h1 {
	color: white;
}
.navbar {
  position: relative;
  width: 70%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.searchBox {
  position: relative;
  width: 40%;
  display: flex;
  align-items: center;
}
.searchBox input {
  width: 100%;
 height: 38px;
  border: none;
  border-radius: 8px;
  padding: 1%;
  text-indent: 10px;
  font-size: 18px;
}
#searchIcon {
  position: relative;
  left: -30px;
  font-size: 22px;
  color: rgb(77, 77, 77);
  cursor: pointer;
  z-index: 221;
}
.navbar ul {
  width: 60%;
  text-align: center;
}
.navbar ul li {
  display: inline-block;
  margin-left: 4%;
  transition: all 0.5s ease;
  text-align: center;
  cursor: pointer;
  padding: 1%;
  height: 20px;
  overflow: hidden;
}
.navbar ul li:hover {
  height: 45px;
}
.navbar ul li #headIcon {
  display: block;
  font-size: 22px;
}
.navbar ul li a {
  text-decoration: none;
  font-size: 18px;
  color: white;
}
.navbar ul li a:active,
:focus {
  text-decoration: underline;
  font-weight: 700;
}
	.navbar ul li
a:link
 {
  height: 20px;
}	  
		  
.navbar #menuIcon {
  display: none;
}
.mobile-search{
	display: none;
		  }		
		  	#searchform fieldset {
    width: 98%;
}	  
	nav{
  height: 60px;
  background-color: var(--color-1);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.links-container{
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
nav a{
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
}
nav a:hover{
  background-color: var(--accent-color);
}
nav .home-link{
  margin-right: auto;
}
nav svg{
  fill: var(--text-color);
}
#sidebar-active{
  display: none;
}
.open-sidebar-button, .close-sidebar-button{
  display: none;
}
	  		  
@media (min-width: 768px) {		  
	nav a{
		display: none;}	    
		  }

@media (max-width: 768px) {	
	.brand {
    width: auto;
}
	
	.main-header {
    justify-content: center;
}
  .navbar {
    display: none;
  }
	.mobile-search{
display: block;
background-color: #092635;
    padding: 0 20%;
    height: 50px;
	}

	.mobile-search input{
	padding: 10px 11px;
    border-radius: 8px;
}
	}
		  
@media(max-width: 768px){
  .links-container{
    flex-direction: column;
    align-items: flex-start;

    position: fixed;
    top: 0;
    right: -100%;
    z-index: 10;
    width: 300px;

    background-color: var(--color-1);
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
    transition: 0.75s ease-out;
  }
  nav a{
    box-sizing: border-box;
    height: auto;
    width: 100%;
    padding: 15px 30px;
	border-bottom: 1px solid;
    justify-content: flex-start;
  }
  .open-sidebar-button, .close-sidebar-button{
    padding: 20px;
    display: block;
  }
  #sidebar-active:checked ~ .links-container{
    right: 0;
  }
  #sidebar-active:checked ~ #overlay{
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
  }	
	.fa {
    margin-right: 6px;
}
}	  

