html {
  --background-main: rgb(32, 32, 32);
  background-color: var(--background-main);
  color: white;
  font-family: sans-serif;
  text-align: center;
  margin: 0 auto;
}

header {

}

main {

}

footer {

}

header h1 {
  font-size: 40px;
}

h2 {
  text-align: left;
}

nav {
  display: flex;
  justify-content: space-evenly;
}

a {
  text-decoration: none;
  font-weight: bold;
  color: rgb(0, 128, 255);
}

/* When the link isn't being hovered over and also hasn't been visited yet */
a { 
}

a:hover {
  color: rgb(0, 224, 255);
}

/* Navbar links should be the same color no matter what, looks cleaner that way */
.navbar-link {
  color: rgb(0, 128, 255);
}

#top-header {
  text-align: center;
}

#parent-section {
  display: grid;
  grid-template-columns: 25% 50% 25%;
  width: 75%;
  margin: 0 auto;
}

#child-left {

}

#child-center {
  text-align: left;
}

#child-right {

}

