/*
  This is the CSS file for all pages on my website. It has a dark grey and blue-green theme.
  It mainly styles the body and nav for consistency through the pages.
*/

body {
  background-color: rgb(30, 30, 30);
  font-family: 'Roboto', sans-serif;
}

nav {
  display: flex;
  width: 70%;
  height: 50px;
  justify-content: space-evenly;
  align-items: center;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
}

nav a {
  color: rgb(200, 200, 200);
  text-decoration: none;
  border: 1px solid rgb(200, 200, 200);
  padding: 5px;
}

a:hover {
  color: white;
}