:root {
    --color1: #064789;
    --color2: #427AA1;
    --color3: #EBF2FA;
    --color4: #97b6ce;
    font-family: sans-serif;
    background-color: white;
}

header {
    display: flex;
    align-items: center;
    padding: 32px;
    gap: 8px;
}

header img {
    flex-shrink: 0;
}

header div:first-of-type {
    margin-inline-start: auto; /* push this and everything after to the end */
}

h1, h2, h3, div {
    color: var(--color1);
}

p {
    color: var(--color4);
}

h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -2.16px;
}

h1 + p {
    font-size: 32px;
    line-height: 120%;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.48px;
}

h2 + p {
    font-size: 32px;
    line-height: 120%;
}

div {
    font-size: 16px;
    font-weight: 400;
}

.banner {
    background-color: var(--color3);
    padding: 160px 0;
    align-content: center;
}

.banner * {
    text-align: center;
    margin: auto;
}

main {
    margin: 0 64px;
}
