@font-face {
  font-family: 'Sharpie';
  src: url('./fonts/Sharpie-Variable.woff2') format('woff2');
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}

html, body {
    width: 100%;
    height: 100%;

    margin: 0;
}

body {
    font-family: 'Sharpie', sans-serif;
    background-color: #0e0f0e;
    color: #f6f7f0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

h1, h2 {
    margin: 0;
    font-weight: normal;
}
h1 {
    font-size: 5rem;
    text-align: center;
}

.projects {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 1rem;
}

.projects h2 {
    grid-column: 1 / 4;
    text-align: center;
}
.projects a {
    color: inherit;
}
.projects .project-separator {
    font-size: 5rem;
    text-align: center;
    font-weight: 300;
}