body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #2a2a2a;
}

#navbar {
  margin: 0px;
  display: flex;
  justify-content: space-between;
  padding: 0px 50px;
  align-items: center;
  font-size: 1.1em;
  height: 65px;
  background-color: #1f1f1f;
  color: white;
}

#title {
  font-size: 1.4em;
  cursor: pointer;
}
#title:hover{
  color: rgb(46, 129, 181);
  transform: scale(1.06);
  transition: 200ms ease-out;
}
#links {
  display: flex;
  justify-content: space-between;
  width: 35%;
  cursor: pointer;
}

#links > p:hover {
  color: rgb(46, 129, 181);
  transform: scale(1.06);
  transition: 200ms ease-out;
}
