@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100..900&display=swap");

body {
    max-width: 600px;
    margin: 2rem auto;
    font-family: Verdana;
    padding: 0 1rem;
}

section {
    padding: 1.5rem 0;
    border-top: 1px solid slategray;
}

nav ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0;
    gap: 2rem;
}

nav ul a {
    text-decoration: none;
    font-weight: 500;
}

#organizers {
    #organizers-list {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    li img {
        max-width: 100px;
        border-radius: 500px;
    }

    nav,
    p {
        font-size: 0.8rem;
    }
}

h1,
h2,
h3,
h4 {
    font-family: "Noto Sans Mono", monospace;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 3rem;
}

h2 {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 150%;
}

p {
    font-size: 1rem;
    line-height: 1.75rem;
}
