a {
    color: var(--color2);
}


body {
    display: flex;
    flex-direction: column;
    /* align-items: center;
    justify-content: center; */
    min-height: 100vh;
}

main section {
    padding: var(--gap-huge);
}

main section:nth-child(2n+1) { background: var(--bg1); }
main section:nth-child(2n+2) { background: var(--bg2); }

main section > div {
    margin: auto;
    max-width: 1200px;
}

main section h2 {
    text-align: center;
}