/* Reset */
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

/* Global */
body {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: 
    "navbar navbar"
    "main main"
    "footer footer";
    background-color: #1f1e1e;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

a {
    text-decoration: none;
    color: white;
}

a:visited {
    text-decoration: none;
    color: white;
}

a:hover {
    text-decoration: none;
    color: yellow;
}

h1 {
  text-transform: uppercase;
}

/* Navigation */
.nav {
    grid-area: navbar;
    top: 0;
    position: sticky;
    display: flex;
    justify-content: space-between;
    align-content: center;
    background-color: #1f1e1e;
    padding: auto;
}

.nav-left-logo {
  display: flex;
}

.nav-center-links {
    display: flex;
    align-self: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-center-links ul {
    display: flex;
    gap: 50px;
    list-style: none;
}

.nav-link {
}

.nav-right-socials {
  display: flex;
}

.nav-right-socials ul {
  display: flex;
  gap: 50px;
  align-self: center;
  list-style: none;
}

.nav-social-link {
}

/* Main Site Content */

main {
    grid-area: main;
    background-color: #1f1e1e;
}

.page-container {
  display: block;
}

footer {
    grid-area: footer;
    background-color: #1f1e1e;
    min-height: 200px;
}

.footer-container {
}

.dark-bottom-border {

}

.subtitle {

}

/* Media queries */
