h1 {
  text-align: center;
  font-family: 'Roboto', sans-serif;
}
h4 {
  text-align: center;
  font-family: 'Roboto', sans-serif;
}
p {
  text-align: center;
  font-family: 'Roboto', sans-serif;
}
body {
  background-color: lightgray
}
a {
  text-align: center;
  font-family: 'Roboto', sans-serif;
}
footer {
  text-align: bottom;
}
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 8vh;
  background-color: #5D4954;
}

.logo {
  color: rgb(226, 226, 226);
  text-transform: uppercase;
  letter-spacing: 2px;
  font: 20px;
}

.nav-links{
  display: flex;
  background-color: #5D4954;
  justify-content: space-around;
  width: 30%;
  
}

.nav-links li {
  list-style: none;
}


.nav-links a{
  color: rgb(226, 226, 226);
  text-decoration: none;
  letter-spacing: 2px;
}
