/*
 * Copyright (C) 2026 Joel Torres
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * You may also obtain a copy of the License at
 *
 *     /static/license.txt
 */

:root {
    --main-color: #5980d4;
    --link-color: #000000;
}

html {
    font-family: Georgia, Times New Roman, Baskerville, Palatino, serif;
    padding: 20px;
}

article {
    width: 90%;
}

p {
    line-height: 1.5;
}

a:link {
    color: var(--link-color);
    font-weight: bold;
}

a:visited {
    color: var(--link-color);
}

a:active {
    color: var(--link-color);
}


a:hover {
    color: var(--main-color);
    text-decoration: none;
}

.curnav {
    color: var(--main-color) !important;
}

