body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background: rgb(246, 244, 255);
    color: black;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.container {
    display: flex;
    height: 100vh;
    justify-content: space-between;
}

.sidebarL {
    padding: 10px;
    flex-grow: 1;
    max-width: 300px;
    min-width: 300px;
    min-height: 100vh;
    overflow: auto;
    text-align: center;
    background-image: url("/images/lace_border.png");
    background-repeat: repeat-y;
    /* Repeat vertically */
    padding-left: 50px;
    /* Adjust to match the left border width */
    padding-right: 50px;
    /* Adjust to match the right border width */
    box-sizing: border-box;
}

.sidebarL_nav a {
    color: rgb(255, 76, 106);
    text-decoration: none;
}

.sidebarR {
    padding: 10px;
    flex-grow: 1;
    max-width: 300px;
    min-width: 300px;
    min-height: 100vh;
    overflow: auto;
    background-image: url("/images/lace_border.png");
    background-repeat: repeat-y;
    /* Repeat vertically */
    padding-left: 50px;
    /* Adjust to match the left border width */
    padding-right: 50px;
    /* Adjust to match the right border width */
    box-sizing: border-box;
}

.miniblog {
    padding: 8px;
}

.main {
    flex: 1;
    color: rgb(255, 76, 106);
    overflow: auto;
    padding-left: 10px;
    padding-right: 10px;
}

.luna {
    position: absolute;
    left: 300px;
    top: 50px;
    display: block;
    width: 230px;
    height: auto;
}

/** Font Styles */


h1 {
    color: rgb(0, 0, 0);
    font-size: 25px;
    text-align: center;
    font-weight: normal;
    margin: 0;
    padding: 3px;
    font-family: "mystery quest";
}

.caption {
    font-size: 12px;
}

.date {
    color: rgb(255, 76, 106);
    ;
    font-size: 14px;
    margin-bottom: 3px;
    display: block;
}

p {
    margin-top: 0;
    margin-bottom: 8px;
}


/** Marquees */

.marquee {
    margin: 0 auto;
    width: 80%;
}

.scrolling-text {
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    width: 70%;
    position: relative;
    /* Add position relative for mask */
    mask: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    /* For Safari */
}

.scrolling-text span {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}