:root {
    --ocean-blue-bg: #0e4d82;
    --ocean-blue-text: rgb(255, 255, 255);

    --sky-blue-bg: #007abf;
    --sky-blue-text: rgb(255, 255, 255);

    --forest-green-bg: #218742;
    --forest-green-text: rgb(255, 255, 255);

    --slate-gray-bg: #3d4144;
    --slate-gray-text: rgb(255, 255, 255);

    --cloud-gray-bg: #f5f5f5;
    --cloud-gray-text: rgb(0, 0, 0);

    --sunshine-yellow-bg: #fcc34e;
    --sunshine-yellow-text: rgb(0, 0, 0);

    --rust-red-bg: #a23c2e;
    --rust-red-text: rgb(255, 255, 255);
}

a:focus
{
    outline: 2px solid var(--sky-blue-bg);
    outline-offset: 4px;
    border-radius: 0px;
    text-decoration: underline;
}

a:hover
{
    text-decoration: underline;
}