/* Adapted from https://codepen.io/mutedblues/pen/MmPNPG */

html, body {
  overflow-x: hidden;
  width: 100%;
  margin:0 auto;
}
body {
  font-family: 'roboto', sans-serif;  
}

header {
  display: flex;
  width: 100%;
  background-color: aliceblue;
}

.headerHInput{
  display:flex;
  justify-content: space-between;
  text-align: center;
}

.nav-header {
  flex-grow: 1;
  max-width:1440px;
  width: 100%;  
  height: 100%;     
}

header > div.nav-header {
  display: flex;
  align-items: center;
  gap: 50px;
  padding-left: 2rem;
/*   flex-grow: 1; */
}

header h1 {
  margin-left: 1rem;
  font-weight: 500;
  font-size: 50px;
  margin-top:35px;
}

header a {
  text-decoration: none;
}

/* "Hide" checkbox -- moves it off screen*/
#menu-btn {
  position: absolute;
  top: -100%;
  left: -100%;
}

/* Hide hamburger for bigger screens */
.menu-icon {
  visibility: hidden;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 250px;
  margin-right: 2rem;
}
