body {
    background-color: #e8d5b7;
}

.no-bullets ul {
    list-style-type: none;
}

.no-bullets ul ul {
    list-style-type: none;
}


.no-bullets ul ul ul {
    list-style-type: none;
}


main {
    min-height: 75vh;
    padding-left: 3em;
    padding-right: 1em;
}

.navbar {
    --bulma-navbar-item-img-max-height: 4rem
}

a {
    --bulma-link-text: #521477;
}

@font-face {
    font-family: 'Signature';
    src: url('/webfonts/SignericaFat-1XOe.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

#nav-logo {
    width: 260px;
    font-family: "Signature"
}

nav a {
    color: black
}

a.navbar-item:hover {
    background-color: #e8d5b7
}

.navbar-menu.is-active {
    background-color: #e9dac0;
}

pre {
    background-color: inherit;
}

footer.footer {
    background-color: #f9b248
}


@keyframes MoveUpDown {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 0 100%;
    }

    100% {
        background-position: 0 0;
    }
}

.scroll-nav-bg {
    height: 100%;
    width: 100%;
    background-image: url('/img/Orange-and-purple-watercolor-paint.jpeg');
    background-size: cover;
    animation: MoveUpDown 35s linear infinite;
}