    /* font-family: 'Montserrat', sans-serif;
    font-family: 'Hepta Slab', serif; */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background: #eee;
}
li{
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: dimgray;
  text-decoration: none;
}
a{
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: dimgray;
  text-decoration: none;
}
button{
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: dimgray;
  text-decoration: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 10%;
  border: solid 3px #ddd;
}
.logo {
  cursor: pointer;
  width: 100px;
}
.nav_links {
  list-style: none;
}
.nav_links li {
  display: inline-block;
  padding: 0px 20px;
}
.nav_links li a {
  transition: all 0.3s ease 0s;
}
.nav_links li a:hover {
  color: dodgerblue;
}
button {
  padding: 9px 25px;
  background-color: rgba(205, 241, 233, 1);
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
button:hover{
    background-color: rgba(205, 241, 233, 0.6);
}
