html {
  font-family: 'Courier New', Courier, monospace;
}

h1 {
  text-align: center;
}

* {
  box-sizing: border-box;
}

html {
  background-color: white;
}

nav ul {
  padding: 0;
  list-style-type: none;
  flex: 2;
  display: flex;
}

nav li {
  display: inline;
  text-align: center;
  flex: 1;
}

nav a {
  text-decoration: none;
  padding: 5px;
  color: rgb(167, 167, 167);
}

nav a:hover {
  background-color: rgb(183, 197, 255);
  border-radius: 5px;
  color: rgb(49, 87, 238);
}

nav {
  position: fixed;
  background: white;
  top: 0;
  right: 3px;
  width: 100%;
}

body {
  margin-top: 50px;
}
