        body {
            margin: 0;
            font-family: 'Libre Caslon Text', 'Big Caslon', 'Times New Roman', serif;
            background-color: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 0; 
        }

        /* Main content container for responsiveness and centering */
        .container {
            width: 100%;
            max-width: 1080px;
            background-color: #ffffff;
            padding: 40px 60px;
            box-shadow: none; 
            box-sizing: border-box;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            padding-bottom: 20px;
            flex-wrap: wrap;
            border-bottom: 1px solid #e0e0e0;
            margin-bottom: 30px;
        }

        h1 {
            font-family: 'Libre Caslon Text', 'Big Caslon', 'Times New Roman', serif;
            font-size: 96px;
            margin: 0;
            font-weight: 400;
            line-height: 1;
        }
        
        h1 .landon {
            color: #3356a9;
        }

        h1 .smith {
            color: #8db48e;
        }

        nav {
            margin-top: 10px;
            display: flex;
            align-items: center;
        }
        
        nav a {
            font-family: 'Libre Caslon Text', 'Big Caslon', 'Times New Roman', serif;
            font-size: 24px;
            color: #3356a9;
            text-decoration: none;
            white-space: nowrap;
        }
        
        nav span {
            font-size: 24px;
            color: #3356a9;
            padding: 0 10px;
        }

        .welcome-section {
            padding-bottom: 10px;
        }

        .welcome-section h2 {
            font-size: 24px;
            font-weight: 400;
            margin: 0 0 5px 0;
            display: inline-block;
            padding-bottom: 5px;
            border-bottom: 1px solid #e0e0e0;
        }

        .welcome-section p {
            font-size: 18px;
            line-height: 1.5;
            margin: 0;
            color: #333;
            text-align: justify;
        }
        
        .section {
            overflow: auto; 
            padding: 30px 0;
        }
        
        .section h3 {
            font-size: 48px;
            font-weight: 400;
            margin: 0 0 5px 0;
            padding-bottom: 5px;
            border-bottom: 1px solid #e0e0e0;
            display: inline-block;
        }
        
        .title-wrapper {
            margin-bottom: 15px;
        }

        .section p {
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            margin: 0;
            text-align: justify;
        }
        
        /* The separator SVG now has its own container to align it with the content */
        .separator-container {
            width: 100%;
            max-width: 1080px;
            padding: 0 60px;
            box-sizing: border-box;
        }

        .separator-svg {
            width: 100%;
            height: 40px; 
            margin: 20px auto; 
            display: block; 
        }
        
        .about-section .profile-pic {
            width: 100%;
            max-width: 320px;
            aspect-ratio: 1 / 1; 
            border-radius: 50%;
            object-fit: cover;
            float: left;
            margin-right: 40px;
            margin-bottom: 20px;
            shape-outside: circle(50%);
        }
        
        .about-section .title-wrapper,
        .music-section .title-wrapper {
            text-align: right;
        }
        .blog-section .blog-image,
        .projects-section .projects-image {
            width: 100% !important;
            max-width: 250px !important;
            aspect-ratio: 1 / 1 !important;
            object-fit: cover !important; 
            display: block;
            margin-left: 40px;
            flex-grow: 0;
            flex-shrink: 0;
        }


        .blog-section,
        .projects-section {
            display: flex;
            flex-direction: row-reverse;
            align-items: flex-start;
        }

        .blog-section .section-text,
        .projects-section .section-text {
            flex: 1;
        }

        
        .blog-section a,
        .projects-section a {
            color: #0000ff;
            text-decoration: none;
        }

        .music-section {
            padding: 30px 0;
            position: relative; 
        }
        
        .music-section .album-art-container {
            position: relative;
            width: 300px;
            height: 300px;
            float: left;
            margin-right: 40px;
        }

        .music-section .album-art {
            width: 200px;
            height: 200px;
            border: 1px solid #ccc;
            position: absolute;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .album-art.art-1 {
            top: 60px;
            left: 0; 
            transform: rotate(-8deg);
            z-index: 1;
        }
        .album-art.art-2 {
            top: 20px;
            left: 80px; 
            transform: rotate(5deg);
            z-index: 2;
        }
        .album-art.art-3 {
            top: 100px;
            left: 50px; 
            transform: rotate(12deg);
            z-index: 3;
        }

        .music-section .section-text {
        }
        
        .music-section .soundcloud-link {
            font-size: 32px;
            font-weight: bold;
            color: #3356a9;
            text-decoration: none;
            display: block;
            margin-top: 20px;
        }


        /* Mobile adjustments */
        @media (max-width: 900px) {
            .container {
                padding: 20px;
            }
            h1 {
                font-size: 64px;
            }
            nav a, nav span {
                font-size: 18px;
            }
            .about-section .profile-pic, .blog-section .blog-image, .projects-section .projects-image {
                float: none;
                display: block;
                margin: 20px auto;
                width: 80%;
                max-width: 300px;
                height: auto;
            }
            .music-section .album-art-container {
                position: relative;
                width: 100%;
                left: auto;
                margin-right: auto;
                height: 320px;
            }
            .music-section .album-art {
                width: 40%;
                height: auto;
                max-width: 200px;
                position: absolute;
                box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            }
            .album-art.art-1 {
                top: 60px;
                left: 10%;
                transform: rotate(-8deg);
                z-index: 1;
            }
            .album-art.art-2 {
                top: 20px;
                left: 45%;
                transform: rotate(5deg);
                z-index: 2;
            }
            .album-art.art-3 {
                top: 100px;
                left: 20%;
                transform: rotate(12deg);
                z-index: 3;
            }
            .music-section .section-text {
                margin-left: 0;
            }
            .about-section .title-wrapper,
            .music-section .title-wrapper {
                text-align: left !important;
            }
        }