body {
    background: url(../src_images/music_bg.png) no-repeat center center fixed; /* Background image from ../Images */
    background-repeat: repeat;
    background-size: contain;
    /* background-color: #451e11; */
}

.content {
    display: flex;
    flex-direction: column;
    gap: 200px; /* Space between each project block */
    margin: 0 auto;
    max-width: 800px; /* Set a max width for the content */
}

.project-item img {
    position: absolute;
    right: -600px; /* Float the image to the right outside the page wrapper */
    top: -20px; /* Adjust this value to raise or lower the image */
    height: auto; /* Maintain aspect ratio */
    width: 500px; 
    object-fit: cover;
    margin-left: 20px;
    align-self: center; /* Vertically align the image in the middle */

    transform: scale(1);
    transition: transform 0.5s ease; /* Graceful transition */
}