* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background-color: #f5f5f5;
    --primary-color: #1a73e8;
    --text-color: #202124;
}

@media screen and (prefers-color-scheme: dark) {
    :root {
        --background-color: #202124;
        --primary-color: #1a73e8;
        --text-color: #f5f5f5;
    }
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
}

main {
    width: 100%;
    max-width:
        75rem;
    margin: 0 auto;
    padding: 1rem;
}

.forums {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    grid-gap: 1rem;
}

.forum {
    border: 1px solid var(--primary-color);
    border-radius: 0.25rem;
    padding: 1rem;
    margin-bottom: 1rem;
    width: 100%;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.forum-description
.forum-name {
    line-height: 1;
    font-weight: bold;
}
