body {
    background-color: rgb(26, 26, 26);
}

#dear-farrish {
    background-image: url("/assets/farrish.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 5%;
    box-shadow: inset 0 0 80px #333333;
    mask-image: linear-gradient(0deg,transparent 0%, black 28%, black 100%);

    font-family: "Scholar", serif;

    #logo {
        width: 20em;
    }

    ul {
        padding-top: 10em;
        padding-bottom: 20em;
    }

    li {
        font-style: italic;
        font-size: 3em;
        text-shadow: #ffe 1px 0 10px;

        a {
            all: unset;
        }
    }

    li:hover {
        color: rgb(161, 1, 1);
        cursor: pointer;
    }
}

#luke-menu {
    font-family: "cofo-sans-pixel", sans-serif;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 1em;
    color: rgb(240, 240, 240);

    > div {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 1em;
        margin-right: 2.5em;
        margin-left: 2.5em;
    }
    img {
        filter: invert(0.7);
        width: 10rem;
        margin-right: 2.5em;
        margin-left: 2.5em;
    }

    a {
        background-color: #2979e2;
        color: white;
        text-decoration: none;
        padding: 0.5em;
    }
    a:hover {
        background-color: #1c549e;
    }
}