        body {
            background-image:
                url("https://64.media.tumblr.com/a03a1482694f8031ffb91f6542a23e9e/cbfe1d5aa3b4f513-4a/s640x960/df0e01a1b643075aab09a73cb0b5c0da174cd505.jpg");
        }

        @font-face {
            font-family: berkshire;
            src: url(https://dl.dropbox.com/s/49tg0oklrpc2u71/BerkshireSwash-Regular.ttf?);

        }

        @font-face {
            font-family: ktegaki;
            src: url(https://dl.dropbox.com/s/likp0uru5np58yn/KTEGAKI.ttf);
        }

        .unifrakturmaguntia-regular {
            font-family: "UnifrakturMaguntia", cursive;
            font-weight: 400;
            font-style: normal;
        }

        div {
            font-family: ktegaki;
            font-size: 1em;
            color: brown;
        }

        .image {
            filter: grayscale(100%);
            position: fixed;
            right: 0;
            bottom: 0;
            z-index: 100;
            border-radius: 50%;
            animation: float 5s ease-in-out infinite;
            position: fixed;
        }

        @keyframes float {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0);
            }
        }

        .banner {
            flex-direction: column;
            margin-top: 0px;
            width: 100%;
        }

        .title {
            font-family: "UnifrakturMaguntia", cursive;
            justify-content: center;
            display: flex;
            flex-wrap: wrap;
            flex-direction: row;
            color: black;
            -webkit-text-stroke-width: 0.1px;
            -webkit-text-stroke-color: black;
            text-shadow: 1px 1px 2px black, 0 0 1em white, 0 0 0.2em black;
            font-size: 48px;

        }

        .page {
            flex-wrap: wrap;
            align: left;
            flex-flow: column wrap
        }

        .left {
            flex-wrap: wrap;
            align: left;
        }

        .text {
            background-color: white;
            background-clip: padding-box;
            width: 930px;
            height: 700px;
            margin: 10px;
            padding: 15px display, flex;
            float: left;
            flex-direction: column;
            margin-bottom: 50px;
            border: 20px solid transparent;
            border-image: url('https://solaria.neocities.org/guides/borderimage/blacklacelarge.png') 30 round;
        }

        .entry {
            font-family: ktegaki;
            display: flex;
            align-items: center;
            margin: 30px;
            padding: 130px;
            justify-content: center;
            flex-direction: column;
            align-items: flex-start;
        }

        .navigation {
            background-color: white;
            background-clip: padding-box;
            padding: 15px;
            color: white;
            width: 180px;
            height: 500px;
            display: flex;
            margin-top: 10px;
            float: left;
            flex-direction: column;
            border: 20px solid transparent;
            border-image: url('https://solaria.neocities.org/guides/borderimage/blacklacelarge.png') 30 round;
        }

        ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
            overflow: hidden;
        }

        li {
            float: center;
        }

        li a {
            display: block;
            color: black;
            font-family: "UnifrakturMaguntia", cursive;
            text-align: center;
            padding: 20px;
            text-decoration: none;
        }

        li a:hover {
            background-color: pink;
            opacity: 50%;
            border-radius: 25px;
        }

        @keyframes flying-santa {
            from {
                left: -100px;
            }

            to {
                left: calc(100% + 20px);
            }
        }

        #santa {
            position: fixed;
            left: -200px;
            top: 200px;
            width: 100px;
            animation: flying-santa 7s infinite linear;
            pointer-events: none;
        }