html {
    margin: 0;	
    height: 100%;
    width: 100%;
    overscroll-behavior: none;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0px auto;
    height: 100%;
    max-width: 600px;
    background: white;
    color: black;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.body-content { 
    height: 100%;
    flex: 1; 
}

h1 {
    font-weight: 900;
    font-style: normal;
    text-transform: uppercase;
    font-size: 2rem;
}

h2 {
    font-weight: 900;
    font-style: normal;
    font-size: 1.75rem;
}

h5 {
    font-weight: 400;
}

a {
    color: blue;
    cursor: pointer;
}

@media (hover: hover) {
  a:hover {
    background-color: #dcd0ff;
  }
}

::selection {
    background: #dcd0ff;
}

::-moz-selection {
    background: #dcd0ff;
}

br::selection {
    background: none;
}

.block {
    margin: 0px;
    padding: 5px 0px;
    flex: 1;
} 

footer {
    margin: 60px 0 0 0;
}

/* Projects */
.project-nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.project-nav ul {
    padding-inline-start: 0px;
    margin: 30px auto;
}

.project-nav li {
    list-style: none;
    display: inline-block;
    padding: 0 20px;
}
