:root {
    --blue: #032d61;
    --cyan: #ADD8E6;
    --red: #b51240;
    --cream: #FFFDD0;
}

a {
    color: black;
    text-decoration: none;
}

a:hover {
    color: var(--blue);
    text-decoration: none;
    font-weight: bold;
}

header {
    background-color: var(--blue);
    color: white;
    padding: 32px 32px;
}

main {
    padding: 32px 32px;
}

main a {
    text-decoration: underline;
}
