* {
  margin: 0;
  padding: 0;
  font: inherit;
}

body {
  color: #cdd6f4;
  background-color: #1e1e2e;
  font-family: "JetBrains Mono", monospace;
  height: 100vh;
}

nav {
  display: flex;
  position: sticky;
  top: 0;
  padding: 0.8em;
  background-color: #313244;
  font-size: 1.3em;
  justify-content: space-between; 
}

nav ul {
  list-style: none;
}

nav li {
  display: inline;
}

nav a {
  text-decoration: none;
  color: #cdd6f4;
}

#projects:hover {
  color: #a6e3a1;
}

#blogs:hover {
  color: #89dceb;
}

main {
  display: flex;
  width: 100vw;
  height: 90%;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  font-size: 2em;
}
