@import url('https://fonts.googleapis.com/css2?family=Karma&family=Poppins:ital,wght@0,400;0,500;1,400&display=swap');

body {
    max-width: 1000px;
    width: 90vw;
    height: 95vh;
    margin: auto;
    font-family: Poppins, sans-serif;
}

h1, h2, h3 {
    font-family: Karma, serif;
}

nav {
    display: flex;
    flex-direction: row;
    background-color: #FAFAFA;
    top: 0;
}

nav > a {
    flex: 1;
    text-align: center;
    padding: 10px 0;
}

nav > a.current-nav {
    color: black;
    text-decoration: none;
    cursor: default;
    border-bottom: 3px solid black;
}

h1.homepage {
    font-size: 64pt;
    margin: auto;
    width: max-content;
}

a.homepage {
    font-size: 24pt;
    margin: auto;
}

div.homepage {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}