@font-face {
    font-family: 'Space Grotesk';
    src: url('/static/fonts/space_grotesk/SpaceGrotesk-VariableFont_wght.ttf') format('truetype');
    url('/static/fonts/space_grotesk/SpaceGrotesk-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    color: #424242;
    background-color: antiquewhite;
    font-family: 'Space Grotesk', sans-serif;
    max-width: 750px;
    margin: 0 auto;
    padding: 30px 10px;
    font-size: 1.1em;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0;
    gap: 10px;
}

#main-title {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
}

@media (max-width: 750px) {
    header {
        flex-direction: column;
    }

    #main-title {
        flex-direction: column;
        margin-bottom: 24px;
    }

    #main-title h1 {
        margin: 0;
    }
}

ul {
    padding-inline-start: 20px;
}

li {
    list-style: " — ";
}

h1 > a {
    text-decoration: none;
    color: #424242;
}

.unselectable {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE 10+ and Edge */
    user-select: none; /* Standard syntax */
}

.selectable {
    -webkit-user-select: text; /* Safari */
    -moz-user-select: text; /* Firefox */
    -ms-user-select: text; /* IE 10+ and Edge */
    user-select: text; /* Standard syntax */
}