@media only screen and (min-width: 1300px) {
    .blog-content-container {
        padding-top: 2em;
    }

    .blog-nav-container {
        width: 220px;
        float: left;
        padding-top: 2em;
    }


    .blog-nav {
        list-style-type: none;
        position: relative;
        width: 200px;
        padding: 0;
        margin: 0;
    }

    .blog-nav li {
        position: relative;
        color: white;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        line-height: 2em;
        border-radius: 1em;
        padding: 5px;
        margin: 0 0 1em 0;
        text-align: center;
        background-color: rgb(0, 150, 240);
        transition: transform 0.15s ease-in-out;
        cursor: pointer;
    }

    .blog-nav li:hover {
        transform: scale(1.05);
        filter: hue-rotate(-25deg);
    }

    .image-preview-container {
        display: none; 
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.7);
        justify-content: center;
        align-items: center;
        z-index: 9999;
        backdrop-filter: blur(3px);
    }

    .nav-image-btns {
        position: absolute;
        bottom: 30px;
        margin: 0 auto 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 2em;
        visibility: hidden;
    }

    .nav-image-btns #prev-btn, #next-btn {
        padding: 0.5em;
        width: 100px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        color: white;
        font-size: 16px;
        border-radius: 1em;
        border: none;
        background-color: rgb(0, 150, 240);
        cursor: pointer;
        transition: transform 0.2s ease-in-out;
    }

    .nav-image-btns #prev-btn:hover, #next-btn:hover {
        transform: scale(1.1);
        filter: hue-rotate(-25deg);
    }

    #image-preview {
        max-width: 80vw;
        max-height: 80vh;
        border-radius: 12px;
    }
    
    .blog-content {
        display: none;
        line-height: 1.5em;
        padding: 0;
        margin: 0;
    }

    .legends-container {
        position: fixed;
        right: 50px;
        display: flex;
        flex-direction: column;
        width: 150px;
        height: 150px;
    }

    .ui-container, .hf-container, .hk-container, .pf-container {
        display: flex;
        flex-direction: row;
        justify-content: end;
        align-items: center;
        gap: 1em;
    }

    #houdini-ui, #houdini-function, #houdini-hotkey, #parameter-fields {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        cursor: pointer;
        transition: transform 0.1s ease-in-out;
    }

    #houdini-ui {
        background-color: rgb(205, 0, 0);
    }

    #houdini-function {
        background-color: rgb(240, 150, 0);
    }

    #houdini-hotkey {
        background-color: rgb(0, 150, 240);
    }

    #parameter-fields {
        background-color: rgb(204, 62, 107);
    }

    #houdini-ui:hover, #houdini-function:hover, #houdini-hotkey:hover, #parameter-fields:hover {
        transform: scale(1.25);
    }

    #ui-name, #hf-name, #hk-name, #pf-name {
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    #ui, #hf, #hk, #pf {
        font-family: Arial, Helvetica, sans-serif;
        font-style: italic;
        font-weight: bold;
        text-decoration: underline;
    }

    #ui {
        color: rgb(205, 0, 0);
    }

    #hf {
        color: rgb(240, 150, 0);
    }

    #hk {
        color: rgb(0, 150, 240);
    }

    #pf {
        color: rgb(204, 62, 107);
    }

    #highlight {
        color: rgb(252, 255, 91);
        font-style: italic;
    }

    #notes {
        font-weight: bold;
    }

    #link {
        font-family: Arial, Helvetica, sans-serif;
        font-style: italic;
        font-weight: bold;
        text-decoration: underline;
        color: rgb(100, 150, 240);
    }

    #sss {
        width: 30%;
        height: auto;
    }

    #mss {
        width: 50%;
        height: auto;
    }

    #lss {
        width: 70%;
        height: auto;
    }

    .ss-gallery {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: first baseline;
        gap: 1em;
    }

    img {
        cursor: pointer;
        border-radius: 12px;
        transition-duration: 0.3s ease-in-out;
    }

    img:hover {
        filter: drop-shadow(0 0 6px rgba(240, 240, 240, 0.75));
    }

    #pen {
        filter: grayscale(100%);
        animation: penWrite 0.5s ease-in-out infinite;
    }
    /* Pen animation */
    @keyframes penWrite {
        from { transform: rotate(0deg) translateY(-10px);
        }
        to { transform: rotate(-25deg) translateY(-5px);
        }
    }


    #log, #log-dot-anim {
        color: gray;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        font-size: 24px;
    }

    .logging-container {
        display: flex;
        flex-direction: row;
        align-items: baseline;
        gap: 3px;
    }

    h1, h2, h3, h4, p {
        color: rgb(235, 235, 235);
    }   
}
