<style>
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: rgb(221, 167, 252);
    background-image: "9.JPEG";
    font-family: helvetica, sans-serif;
    color: #2b044a;
}

a {
    text-decoration: none;
    color: rgb(61, 146, 201);
}

a:hover, a:focus {
    text-decoration: underline;
}

.body{
  image-background:"9.JPEG";
}
.sidebar {
    background: rgb(108, 250, 95);
    color: #2b044a;
    width: 100%;
    padding-bottom: 2em;

    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */
}

.header {
    text-align: center;
    margin: 0;
}

.samson {
    max-width: 200px;
    height: auto;
}

.zombie {
   max-width: 200px;
    height: auto; 
    position:relative;
    left:70px;
}

.brand-title {
    text-transform: uppercase;
    margin: 20px 0 5px;
    font-size: 24px;
    letter-spacing: 2px;
}

.brand-tagline {
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 14px;
    opacity: 0.8;
}

.nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    display: block;
    margin: 10px 0;
}

.nav-item a {
    background: transparent;
    color: #2b044a;
    padding: 0.5em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 85%;
}

/* 3. MAIN CONTENT AREA */
/* ... all your CSS is up here ... */
    .content {
        margin-left: 400px;
        padding: 3em;
        min-height: 100vh;
    }
/* THE SCROLL BOX (Blog Posts) */
.scroll-container {
    max-height: 50vh; /* Limits the height of the blog area */
    overflow-y: auto;
    overflow-x: hidden;
    background: #ee67f5;
    border: 3px solid #2b044a;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 40px; /* Space between scroll box and photos */
}

.post {
    padding-bottom: 2em;
    border-bottom: 1px solid rgba(43, 4, 74, 0.1);
    margin-bottom: 1em;
}

.post-title {
    font-size: 2em;
    margin-bottom: 0.2em;
}

.post-avatar {
    border-radius: 50%;
    float: right;
    margin-left: 1em;
}

.post-description {
    line-height: 1.6em;
}

/* 5. PHOTO SECTION (Outside Scroll Box) */
.photo-section {
    border-top: 4px dashed #2b044a;
    padding-top: 20px;
}

.post-images.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 15px 0;
}

.post-images.horizontal-scroll img {
    flex: 0 0 auto;
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #2b044a;
    
}

/* Custom Horizontal Scrollbar */
.horizontal-scroll::-webkit-scrollbar {
    height: 12px;
}
.horizontal-scroll::-webkit-scrollbar-track {
    background: #2b044a;
    border-radius: 10px;
}
.horizontal-scroll::-webkit-scrollbar-thumb {
    background: #6cfa5f; /* Neon green thumb */
    border-radius: 10px;
}

/* 6. FOOTER */
.footer {
    text-align: center;
    padding: 2em 0;
    font-size: 80%;
}

/* 7. DESKTOP LAYOUT (Side-by-Side) */
@media (min-width: 48em) {
    .sidebar {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        width: 400px;
        min-height: 100vh;
        /* Using your custom backgrounds */
        background: url("Untitled-1.png") no-repeat top left, 
                    url("Untitled-2.png") no-repeat bottom right, 
                    rgb(108, 250, 95);
        background-size: 250px auto, 250px auto, cover;
    }

    @media (min-width: 48em) {
    .header {
        margin-top: 0;
    }

    .content {
        margin-left: 400px;
        padding: 3em;
        min-height: 100vh;
    }
}
</style>