@import "base.css";

:root {
    --spacing: 32px;
    --line-height: 1.75;
}

.root {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing);
}

main {
    max-width: 800px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
}

.logo {
    height: 32px;
}

h1 {
    font-weight: bold;
    font-size: 2rem;
    align-self: center;
}

h2 {
    font-weight: bold;
    font-size: 1.5rem;
    align-self: flex-start;
    margin-bottom: 1rem;
}

ul {
    list-style: disc;
    padding-left: 1rem;
}

section {
    display: flex;
    flex-direction: column;
}

p {
    text-align: left;
}

@media (max-width: 768px) {
    main {
        gap: 2rem;
    }

    .logo {
        height: 24px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }
}