* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: default;
}

body {
  background-color: #212c33;
  color: #d5b47c;
  font-family: 'Source Code Pro', monospace;
}

a {
  color: #d5b47c;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
}

.logo {
  font-size: 60px;
  margin-bottom: 20px;
  text-decoration: none;
}

.logo::before {
  content: "<";
}

.logo::after {
  content: "/>";
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-nav a {
  margin: 0 10px;
}

.projects-nav {
  padding: 20px 0;
}

.page {
  display: none;
}