html {
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}

@media only screen and (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
	background-color: LightGray;
}

#footer {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
}

#navbar {
  flex-grow: 1;
  width: 100vw;
}

#navbar ul {
  display: flex;
  list-style: none;
  padding: 0;
  justify-content: space-evenly;
}

a {
  color: black;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: DarkOrange;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  font-size: 1.5rem;
}

li {
  font-size: 1.2rem;
}

.container {
  padding: 0 10%;
}
