

html { font-size: 100%; }

/*hamburger menu items*/
.container {
display: inline-block;
cursor: pointer;
margin: 0% 3%;
}

.bar1, .bar2, .bar3 {
width: 35px;
height: 5px;
background-color: #333;
margin: 6px 0;
transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
transform: translate(0, 11px) rotate(-45deg);
}

/* Fade out the second bar */
.change .bar2 {
opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
transform: translate(0, -11px) rotate(45deg);
}


/* Style navigation menu links */
#myLinks {
display: none;
background-color: #fffde7;
width: 50%;
}

#myLinks.show {
display: block;
}

#myLinks a {
color: rgb(0, 0, 0);
padding: 14px 16px;
text-decoration: none;
font-size: 1.2rem;
font-family: 'Inconsolata', monospace;
display: block;
}

#myLinks a:hover {
background: #cecaa4;
}

.active {
background-color: #04AA6D;
color: white;
}

h1 a {
    font-size: 2.0rem;
    text-decoration: none;
    text-align: left;
    color: inherit; /* keeps same color as h1 */
}
h1 a:hover {
    text-decoration: underline; /* optional hover effect */
}

#h2center {
    font-size: 1.8rem;
    font-family: 'Inconsolata', monospace;
    text-align: center;
}

h2{
    font-size: 1.8rem;
    font-family: 'Inconsolata', monospace;
    text-align: center;
}

#title {
    font-size: 2.5rem;
    font-family: 'Inconsolata', monospace;
}

p {
  font-size: 1.2rem;
  font-family: 'Inconsolata', monospace;
  text-align: left;
  margin-left: 25%;
  margin-right: 25%;
}

@media (max-width: 768px) {
  p {
    margin-left: 10%;
    margin-right: 10%;
  }
}

a{
    font-size: 1.2rem;
    font-family: 'Inconsolata', monospace;
    text-align: left;
    margin-left: 5%;
    margin-right: 5%;
    color: black;
}

#centered_a{
    display: block;
    text-align: center;
    margin-left: 5%;
    margin-right: 5%;
}

#centered_p{
    text-align: center;
    margin-left: 5%;
    margin-right: 5%;
}