body {
    /* background and text */
    background-image: url("assets/nightSky.gif");
    color: white;
    font-family: "Tektur", sans-serif;

    .center {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
    }

    /* Home text */
    h1 {
        text-align: center;
        font-kerning: normal;
        line-height: 130%;

        /* hyperlink style */

        a:link {
        color: rgb(114, 155, 186);
        background-color: transparent;
        text-decoration: none;
        }

        a:visited {
        color: rgb(72, 75, 77);
        background-color: transparent;
        text-decoration: none;
        }

        a:hover {
        color: whitesmoke;
        background-color: transparent;
        text-decoration: underline;
        }

        a:active {
        color: rgb(184, 202, 210);
        background-color: transparent;
        text-decoration: underline;
        }
    }

    /* Table text */
    table {
        font-kerning: normal;
        line-height: 150%;
        border-spacing: 30px;
    }
}